Server.SkillHandlers.Stealing.IsEmptyHanded C# (CSharp) Méthode

IsEmptyHanded() public static méthode

public static IsEmptyHanded ( Mobile from ) : bool
from Mobile
Résultat bool
		public static bool IsEmptyHanded( Mobile from )
		{
			if ( from.FindItemOnLayer( Layer.OneHanded ) != null )
				return false;

			if ( from.FindItemOnLayer( Layer.TwoHanded ) != null )
				return false;

			return true;
		}