X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=roguelike-client;h=4514946f7da145f44b4cae9680f289e34e7dc9a2;hb=dc6fe5e5b871e529cc0079458c80b58b2883d053;hp=629d4dc4e448243b0842720c0d8de67af09110b7;hpb=778a1f997e42e4a5a9cbe60140b4ebe8c0b1c37f;p=plomrogue diff --git a/roguelike-client b/roguelike-client index 629d4dc..4514946 100755 --- a/roguelike-client +++ b/roguelike-client @@ -89,6 +89,14 @@ def read_message_queue(): redraw_windows = True elif message == "WORLD_UPDATED": query_mapcell() + elif message[:6] == "PLUGIN": + str_plugin = message[7:] + if (str_plugin.replace("_", "").isalnum() + 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