]> git.mxchange.org Git - city.git/blobdiff - application/city/main/states/city/virgin/class_CityVirginState.php
Renamed exception (in 'core') + updated 'core'.
[city.git] / application / city / main / states / city / virgin / class_CityVirginState.php
index 97a3432335292835a31a0fe111d17ba52b2b00c5..9a43b87f36a5b754827b3525f6e3b3927de76c3a 100644 (file)
@@ -45,24 +45,20 @@ class CityVirginState extends BaseCityState implements Stateable {
                // Get new instance
                $stateInstance = new CityVirginState();
 
-               // Set the city instance
-               $stateInstance->setCityInstance($cityInstance);
-
                // Return the prepared instance
                return $stateInstance;
        }
 
        /**
-        * Change the state to 'active' when the city simulation has initialized all
+        * Change the state to 'active' when the city daemon has initialized all
         * tasks, queues, etc.
         *
         * @return      void
         */
-       public function citySimulationIsActivated () {
+       public function cityIsActivated () {
                // Create the new state instance
                CityStateFactory::createCityStateInstanceByName('active');
        }
-
 }
 
 // [EOF]