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

Clear() public method

Resets all conditions and sends update.
public Clear ( ) : void
return void
		public void Clear()
		{
			this.A = 0;
			this.B = 0;
			this.C = 0;
			this.D = 0;
			this.E = 0;
			this.F = 0;
			this.G = 0;
			lock (_extra)
				_extra.Clear();
			_extraCache = null;

			Send.ConditionUpdate(_creature);
		}