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

TelePetR() public static method

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

			pet.Client.Send(packet);
		}
Send