Example #1
0
        public override void GetContextMenuEntries(Mobile from, List <ContextMenuEntry> list)
        {
            BaseHouse house = BaseHouse.FindHouseAt(from);

            if (house != null && from.Alive)
            {
                if (house.IsOwner(from) && house.IsInside(from))
                {
                    ATinker.GetContextMenuEntries(from, this, list);                      //HERE
                }

                base.GetContextMenuEntries(from, list);
            }
        }