X-Git-Url: https://plomlompom.com/repos/%7B%7B%20web_path%20%7D%7D/decks/%7B%7Bdeck_id%7D%7D/cards/%7B%7Bcard_id%7D%7D/static/git-logo.png?a=blobdiff_plain;f=roguelike-client;h=d527a904f061e1552210a196286d73dc4c56cd19;hb=26b0310b0c61804a781149032818d1c6f9b47fd9;hp=ed0ab745cea65434efa73c55bfe1269a689abaa3;hpb=18954ad72dc5ec75c76fdc92882d4381bf6ac7ba;p=plomrogue diff --git a/roguelike-client b/roguelike-client index ed0ab74..d527a90 100755 --- a/roguelike-client +++ b/roguelike-client @@ -89,7 +89,7 @@ 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 + ".py", @@ -131,10 +131,13 @@ def cursed_main(stdscr): if new_open_end: message_queue["open_end"] = True + def set_and_redraw_windows(*ignore): + set_windows() + draw_screen() + curses.noecho() curses.curs_set(False) - signal.signal(signal.SIGWINCH, - lambda ignore_1, ignore_2: set_windows()) + signal.signal(signal.SIGWINCH, set_and_redraw_windows) set_windows() delay = 1 while True: