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

PartyWantedClosedR() public static method

Response to leader closing the party.
Currently only successful
public static PartyWantedClosedR ( Creature creature, bool success ) : void
creature Creature
success bool
return void
		public static void PartyWantedClosedR(Creature creature, bool success)
		{
			var packet = new Packet(Op.PartyWantedHideR, creature.EntityId);

			packet.PutByte(success);

			creature.Client.Send(packet);
		}
Send