Aura.Channel.World.GameEvents.GlobalDropByTag.Matches C# (CSharp) Method

Matches() public method

public Matches ( Creature creature ) : bool
creature Aura.Channel.World.Entities.Creature
return bool
		public override bool Matches(Creature creature)
		{
			var isTag = (creature.HasTag(this.Tag));
			return isTag;
		}
	}