Server.Items.Fists.HasFreeHands C# (CSharp) Method

HasFreeHands() private static method

private static HasFreeHands ( Mobile m ) : bool
m Mobile
return bool
		private static bool HasFreeHands( Mobile m )
		{
			Item item = m.FindItemOnLayer( Layer.OneHanded );

			if ( item != null && !(item is Spellbook) )
				return false;

			return m.FindItemOnLayer( Layer.TwoHanded ) == null;
		}