Server.Mobiles.VendorBackpack.CheckHold C# (CSharp) Méthode

CheckHold() public méthode

public CheckHold ( Mobile m, Item item, bool message, bool checkItems, int plusItems, int plusWeight ) : bool
m Mobile
item Item
message bool
checkItems bool
plusItems int
plusWeight int
Résultat bool
		public override bool CheckHold( Mobile m, Item item, bool message, bool checkItems, int plusItems, int plusWeight )
		{
			if ( !base.CheckHold( m, item, message, checkItems, plusItems, plusWeight ) )
				return false;

			return true;
		}