X-Git-Url: https://plomlompom.com/repos/?p=plomrogue;a=blobdiff_plain;f=server%2Fworld.py;h=b9f9114630ef51233883d5c8fa5d67e729b1e0ef;hp=8c85d153219b73edafebed56ad5ad12fd8534c2b;hb=c94c0575b191d0162d8a1cbbbe4e59cca2e40324;hpb=a138cf3250a860e1bdec7f84248577030948d29b diff --git a/server/world.py b/server/world.py index 8c85d15..b9f9114 100644 --- a/server/world.py +++ b/server/world.py @@ -52,8 +52,9 @@ def set_world_inactive(): def turn_over(): """Run game world and its inhabitants until new player input expected.""" from server.config.actions import action_db, ai_func - from server.config.misc import thingproliferation_func, calc_effort_func + from server.config.misc import calc_effort_func from server.update_map_memory import update_map_memory + from server.thingproliferation import thingproliferation id = 0 while world_db["Things"][0]["T_LIFEPOINTS"]: proliferable_map = world_db["MAP"][:] @@ -86,5 +87,5 @@ def turn_over(): action(Thing) Thing["T_COMMAND"] = 0 Thing["T_PROGRESS"] = 0 - thingproliferation_func(Thing, proliferable_map) + thingproliferation(Thing, proliferable_map) world_db["TURN"] += 1