Server.Items.BaseContainer.CheckHold C# (CSharp) Method

CheckHold() public method

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
return bool
		public override bool CheckHold( Mobile m, Item item, bool message, bool checkItems, int plusItems, int plusWeight )
		{
//			if ( this.IsSecure )
//				return false;

			return base.CheckHold( m, item, message, checkItems, plusItems, plusWeight );
		}