X-Git-Url: https://plomlompom.com/repos/foo.html?a=blobdiff_plain;f=server%2Fcommands.py;h=975e1bd4477800d0d3a22693aeba28981f6c76df;hb=fbfdf2ed32f5fed64b3940c84c0b0b0aa814818b;hp=346661a5db11d342ad2133f3e68f110e8754b56b;hpb=009f06a7a2baef5af4474b18fd75b19c05befb4f;p=plomrogue diff --git a/server/commands.py b/server/commands.py index 346661a..975e1bd 100644 --- a/server/commands.py +++ b/server/commands.py @@ -15,8 +15,9 @@ def command_plugin(str_plugin): """Run code in plugins/[str_plugin].""" import os if (str_plugin.replace("_", "").isalnum() - and os.access("plugins/" + str_plugin, os.F_OK)): - exec(open("plugins/" + 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)