Aura.Channel.World.GameEvents.GlobalBonusManager.GetDrops C# (CSharp) Method

GetDrops() public method

Returns list of all global drops the given creature might drop.
public GetDrops ( Creature creature ) : List
creature Aura.Channel.World.Entities.Creature
return List
		public List<DropData> GetDrops(Creature creature)
		{
			var result = new List<DropData>();

			lock (_drops)
				result.AddRange(_drops.Where(a => a.Matches(creature)).Select(a => a.Data));

			return result;
		}