X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=server%2Fcommands.py;h=9a103372d91fd8aae96bf403dc93d7fc881a80d8;hb=fea55ff542837ce42421aa6664939f21ebec2479;hp=a1f97c98a8d10e9a6076afbe34fb1b2beace3c1e;hpb=289eb1b62e2ae3cd1de5c815a670af7cf0b9660e;p=plomrogue diff --git a/server/commands.py b/server/commands.py index a1f97c9..9a10337 100644 --- a/server/commands.py +++ b/server/commands.py @@ -15,8 +15,8 @@ def command_plugin(str_plugin): """Run code in plugins/[str_plugin].""" import os if (str_plugin.replace("_", "").isalnum() - and os.access("plugins/server/" + str_plugin, os.F_OK)): - exec(open("plugins/server/" + str_plugin).read()) + and os.access("plugins/server/" + str_plugin + ".py", os.F_OK)): + exec(open("plugins/server/" + str_plugin + ".py").read()) world_db["PLUGIN"] += [str_plugin] return print("Bad plugin name:", str_plugin) @@ -507,6 +507,6 @@ def play_move(str_arg): def command_ai(): """Call ai() on player Thing, then turn_over().""" - from server.ai import ai - ai(world_db["Things"][0]) + from server.config.actions import ai_func + ai_func(world_db["Things"][0]) turn_over()