X-Git-Url: https://plomlompom.com/repos/%7B%7Bprefix%7D%7D/balance2?a=blobdiff_plain;f=server%2Fcommands.py;h=fc384528704cf88e8cfec3b975a857d1433594f2;hb=81f8bee1a21642c56b1fead9ba79afdad0c8b451;hp=eb8cf1cedcc8f8937a5800f888d7c0740987b879;hpb=901b83625dc140d710369469e1a8c7dd707a4867;p=plomrogue diff --git a/server/commands.py b/server/commands.py index eb8cf1c..fc38452 100644 --- a/server/commands.py +++ b/server/commands.py @@ -87,8 +87,8 @@ def command_makeworld(seed_string): """Call make_world().""" val = integer_test(seed_string, 0, 4294967295) if None != val: - from server.config.misc import make_world_func - make_world_func(val) + from server.make_world import make_world + make_world(val) def command_maplength(maplength_string): @@ -513,6 +513,6 @@ def play_move(str_arg): def command_ai(): """Call ai() on player Thing, then turn_over().""" - from server.config.actions import ai_func - ai_func(world_db["Things"][0]) + from server.ai import ai + ai(world_db["Things"][0]) turn_over()