Aura.Channel.World.Entities.Creatures.CreatureConditions.RemoveExtra C# (CSharp) Method

RemoveExtra() private method

private RemoveExtra ( double condition, int offset ) : void
condition double
offset int
return void
		private void RemoveExtra(double condition, int offset)
		{
			var id = (int)Math.Log(condition, 2) + (64 * offset);
			lock (_extra)
			{
				if (_extra.ContainsKey(id))
					_extra.Remove(id);
			}

			_extraCache = null;
		}