home · contact · privacy
Server: Make thingproliferation function selectable.
[plomrogue] / server / commands.py
index 9a103372d91fd8aae96bf403dc93d7fc881a80d8..71094e3b2c953e5d122df611a314cd0756c46fe2 100644 (file)
@@ -7,8 +7,8 @@ from server.config.world_data import world_db
 from server.config.io import io_db
 from server.io import log, strong_write 
 from server.utils import integer_test, id_setter
-from server.world import build_fov_map, update_map_memory, set_world_inactive,\
-        turn_over
+from server.world import update_map_memory, set_world_inactive, turn_over
+from server.build_fov_map import build_fov_map
 
 
 def command_plugin(str_plugin):
@@ -149,7 +149,7 @@ def command_tid(id_string):
             print("Ignoring: No ThingType to settle new Thing in.")
             return
         type = list(world_db["ThingTypes"].keys())[0]
-        from server.world import new_Thing
+        from server.new_thing import new_Thing
         world_db["Things"][id] = new_Thing(type)