Server.Items.StrongBackpack.CheckContentDisplay C# (CSharp) Méthode

CheckContentDisplay() public méthode

public CheckContentDisplay ( Mobile from ) : bool
from Mobile
Résultat bool
		public override bool CheckContentDisplay( Mobile from )
		{
			object root = this.RootParent;

			if ( root is BaseCreature && ((BaseCreature)root).Controlled && ((BaseCreature)root).ControlMaster == from )
				return true;

			return base.CheckContentDisplay( from );
		}