Beispiel #1
0
        public virtual void MoveShipHere(NPCShip npc)
        {
            if (npc.GetArea() != null)
            {
                npc.GetArea().RemoveShip(npc);
            }

            AddShip(npc);
        }
Beispiel #2
0
        public override void MoveShipHere(NPCShip npc)
        {
            if (npc.GetArea() != null)
            {
                npc.GetArea().RemoveShip(npc);
            }

            addShip(npc);
        }
Beispiel #3
0
        public override void MoveShipHere(NPCShip npc)
        {
            if (npc.CurrentAreaId != null)
            {
                npc.GetArea().RemoveShip(npc);
            }

            AddShip(npc);
        }