Esempio n. 1
0
        private static bool BootupSolarSystem(int solarSystemID)
        {
            List <Entity> items = ItemDB.GetItemsLocatedAt(solarSystemID);

            if (items == null)
            {
                return(false);
            }

            // Add the items to the ItemFactory
            ItemFactory.GetItemManager().LoadInventory(solarSystemID);

            return(true);
        }