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

RemoveAllFishingGrounds() public method

Removes all event fishing grounds associated with the given identifier.
public RemoveAllFishingGrounds ( string identifier ) : void
identifier string
return void
		public void RemoveAllFishingGrounds(string identifier)
		{
			lock (_fishingGrounds)
				_fishingGrounds.RemoveAll(a => a.Identifier == identifier);
		}