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

CharacterUnlock() public static method

Sends CharacterUnlock to creature's client.
public static CharacterUnlock ( Creature creature, System.Collections.Generic.Locks type ) : void
creature Aura.Channel.World.Entities.Creature
type System.Collections.Generic.Locks
return void
		public static void CharacterUnlock(Creature creature, Locks type)
		{
			var packet = new Packet(Op.CharacterUnlock, creature.EntityId);
			packet.PutUInt((uint)type);

			creature.Client.Send(packet);
		}
Send