X-Git-Url: https://plomlompom.com/repos/?p=plomrogue;a=blobdiff_plain;f=server%2Fcommands.py;h=fc384528704cf88e8cfec3b975a857d1433594f2;hp=72018be4006a93a58a94d8e69144fed3004d9466;hb=81f8bee1a21642c56b1fead9ba79afdad0c8b451;hpb=c94c0575b191d0162d8a1cbbbe4e59cca2e40324 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()