Aura.Channel.Network.ChannelClient.GetSummonedPetSafe C# (CSharp) 메소드

GetSummonedPetSafe() 공개 메소드

Calls GetCreatureSafe(long) and then checks the pet's master for null.
public GetSummonedPetSafe ( long id ) : Creature
id long
리턴 Aura.Channel.World.Entities.Creature
		public Creature GetSummonedPetSafe(long id)
		{
			var pet = this.GetCreatureSafe(id);
			if (pet.Master == null)
				throw new ModerateViolation("Pet 0x{0:X} doesn't have a master.", id);

			return pet;
		}