Aura.Channel.Network.Sending.Send.PartyRemoved C# (CSharp) Method

PartyRemoved() public static method

Informs a client on their removal from the party.
public static PartyRemoved ( Creature creature ) : void
creature Creature
return void
		public static void PartyRemoved(Creature creature)
		{
			var packet = new Packet(Op.PartyRemoved, creature.EntityId);
			creature.Client.Send(packet);
		}
Send