Aura.Channel.World.Trade.Ready C# (CSharp) Méthode

Ready() public méthode

Puts creature into ready mode.
public Ready ( Creature creature ) : void
creature Aura.Channel.World.Entities.Creature
Résultat void
		public void Ready(Creature creature)
		{
			this.Status++;

			Send.TradeReadied(this.Creature1, creature.EntityId);
			Send.TradeReadied(this.Creature2, creature.EntityId);

			if (this.Status == TradeStatus.BothReady)
				this.Complete();

			Send.TradeReadyR(creature, true);
		}