X-Git-Url: https://plomlompom.com/repos/berlin_corona.txt?a=blobdiff_plain;f=server%2Fcommands.py;h=a1f97c98a8d10e9a6076afbe34fb1b2beace3c1e;hb=289eb1b62e2ae3cd1de5c815a670af7cf0b9660e;hp=a3b68bcc62dfc810e22035e06d3b3a5eb0fe8771;hpb=3cfb2d131e570c546d8ed514b0930248a89db41b;p=plomrogue diff --git a/server/commands.py b/server/commands.py index a3b68bc..a1f97c9 100644 --- a/server/commands.py +++ b/server/commands.py @@ -17,6 +17,7 @@ def command_plugin(str_plugin): if (str_plugin.replace("_", "").isalnum() and os.access("plugins/server/" + str_plugin, os.F_OK)): exec(open("plugins/server/" + str_plugin).read()) + world_db["PLUGIN"] += [str_plugin] return print("Bad plugin name:", str_plugin)