X-Git-Url: https://plomlompom.com/repos/%7B%7Bprefix%7D%7D/ledger2?a=blobdiff_plain;f=server%2Fcommands.py;h=fc384528704cf88e8cfec3b975a857d1433594f2;hb=9ae02cea8243472195d97b756542f9d344a67459;hp=72018be4006a93a58a94d8e69144fed3004d9466;hpb=e9a37a285ab627535c0fe983e1eda815c1d587b5;p=plomrogue diff --git a/server/commands.py b/server/commands.py index 72018be..fc38452 100644 --- a/server/commands.py +++ b/server/commands.py @@ -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()