Server.Misc.FoodDecayTimer.ThirstDecay C# (CSharp) Méthode

ThirstDecay() public static méthode

public static ThirstDecay ( Mobile m ) : void
m Mobile
Résultat void
		public static void ThirstDecay( Mobile m )
		{
			if ( m != null && m.Thirst >= 1 )
				m.Thirst -= 1;
		}
	}