home · contact · privacy
Change plugin naming convention.
authorChristian Heller <c.heller@plomlompom.de>
Sat, 20 Feb 2016 10:32:33 +0000 (11:32 +0100)
committerChristian Heller <c.heller@plomlompom.de>
Sat, 20 Feb 2016 10:32:33 +0000 (11:32 +0100)
roguelike-client
server/commands.py

index e0f8558789290a0f889eeeb0c520c623e8261e48..ed0ab745cea65434efa73c55bfe1269a689abaa3 100755 (executable)
@@ -92,8 +92,9 @@ def read_message_queue():
         elif message == "PLUGIN":
             str_plugin = message[7:]
             if (str_plugin.replace("_", "").isalnum()
-                and os.access("plugins/client/" + str_plugin, os.F_OK)):
-                exec(open("plugins/client/" + str_plugin).read())
+                and os.access("plugins/client/" + str_plugin + ".py",
+                    os.F_OK)):
+                exec(open("plugins/client/" + str_plugin + ".py").read())
                 return
             raise SystemExit("Invalid plugin load path in message: " + message)
 read_message_queue.parse_thingshere = False
index a1f97c98a8d10e9a6076afbe34fb1b2beace3c1e..975e1bd4477800d0d3a22693aeba28981f6c76df 100644 (file)
@@ -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/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)