X-Git-Url: https://plomlompom.com/repos/%7B%7Bdb.prefix%7D%7D/task?a=blobdiff_plain;f=server%2Fcommands.py;h=a3b68bcc62dfc810e22035e06d3b3a5eb0fe8771;hb=3cfb2d131e570c546d8ed514b0930248a89db41b;hp=346661a5db11d342ad2133f3e68f110e8754b56b;hpb=6f76684b256fdbd680224bdc47d32ef332d1a852;p=plomrogue diff --git a/server/commands.py b/server/commands.py index 346661a..a3b68bc 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/" + str_plugin, os.F_OK)): - exec(open("plugins/" + str_plugin).read()) + and os.access("plugins/server/" + str_plugin, os.F_OK)): + exec(open("plugins/server/" + str_plugin).read()) return print("Bad plugin name:", str_plugin)