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

PartyRemoveR() public static method

Responding whether the leader can (did) or can't (didn't) remove the requested party member.
public static PartyRemoveR ( Creature creature, bool canRemove ) : void
creature Creature
canRemove bool
return void
		public static void PartyRemoveR(Creature creature, bool canRemove)
		{
			var packet = new Packet(Op.PartyRemoveR, creature.EntityId);

			packet.PutByte(canRemove);

			creature.Client.Send(packet);
		}
Send