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

RemoveAllDrops() public method

Removes all global drops associated with the given identifier.
public RemoveAllDrops ( string identifier ) : void
identifier string
return void
		public void RemoveAllDrops(string identifier)
		{
			lock (_drops)
				_drops.RemoveAll(a => a.Identifier == identifier);
		}