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

TradeReadyR() public static method

Sends TradeReadyR to creature's client.
public static TradeReadyR ( Creature creature, bool success ) : void
creature Creature
success bool
return void
		public static void TradeReadyR(Creature creature, bool success)
		{
			var packet = new Packet(Op.TradeReadyR, creature.EntityId);
			packet.PutByte(success);

			creature.Client.Send(packet);
		}
Send