Server.Misc.WeightOverloading.GetMaxWeight C# (CSharp) Méthode

GetMaxWeight() public static méthode

public static GetMaxWeight ( Mobile m ) : int
m Mobile
Résultat int
		public static int GetMaxWeight( Mobile m )
		{
			//return ((( Core.ML && m.Race == Race.Human) ? 100 : 40 ) + (int)(3.5 * m.Str));
			//Moved to core virtual method for use there

			return m.MaxWeight;
		}