home · contact · privacy
Server: Fix typo, remove deprecated outcommented code.
[plomrogue] / server / commands.py
index a3b68bcc62dfc810e22035e06d3b3a5eb0fe8771..975e1bd4477800d0d3a22693aeba28981f6c76df 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/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)