X-Git-Url: https://plomlompom.com/repos/?p=plomrogue;a=blobdiff_plain;f=roguelike-client;h=4514946f7da145f44b4cae9680f289e34e7dc9a2;hp=e0f8558789290a0f889eeeb0c520c623e8261e48;hb=08e48fa62e37ab29b6b7728db0bf78407ff22ba4;hpb=3cfb2d131e570c546d8ed514b0930248a89db41b diff --git a/roguelike-client b/roguelike-client index e0f8558..4514946 100755 --- a/roguelike-client +++ b/roguelike-client @@ -89,11 +89,12 @@ def read_message_queue(): redraw_windows = True elif message == "WORLD_UPDATED": query_mapcell() - elif message == "PLUGIN": + elif message[:6] == "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