home · contact · privacy
Server: Transform PLUGIN command to God command, save its input.
[plomrogue] / server / commands.py
index 346661a5db11d342ad2133f3e68f110e8754b56b..a1f97c98a8d10e9a6076afbe34fb1b2beace3c1e 100644 (file)
@@ -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, os.F_OK)):
+        exec(open("plugins/server/" + str_plugin).read())
+        world_db["PLUGIN"] += [str_plugin]
         return
     print("Bad plugin name:", str_plugin)