X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=client%2Fcommands.py;h=d86346f29b38caa30621e807b2e52d1ac39a346b;hb=92d13d6d26fd7df2b84af81ea8ca8a6ffadf12ad;hp=61cffacc57c565a9a6b7779e93061c1d43a48cef;hpb=91dd475e7a5e1351d1f76cf8d6df6fc8557d2e9c;p=plomrogue diff --git a/client/commands.py b/client/commands.py index 61cffac..d86346f 100644 --- a/client/commands.py +++ b/client/commands.py @@ -1,3 +1,8 @@ +# This file is part of PlomRogue. PlomRogue is licensed under the GPL version 3 +# or any later version. For details on its copyright, license, and warranties, +# see the file NOTICE in the root directory of the PlomRogue source package. + + from client.config.world_data import world_data from client.io import send from client.query_mapcell import query_mapcell @@ -61,8 +66,15 @@ def command_looker(string): def command_look_scroller(string): def command_look_scroll(): - win_size = next(win["size"] for win in windows - if win["func"] == win_look) + from client.window_management import windows + from client.config.windows import windows_config + from client.windows import win_look + try: + i = next(i for i in range(len(windows_config)) + if windows_config[i]["func"] == win_look) + except StopIteration: + return + win_size = windows[i].size if string == "up" and world_data["look_scroll"] > 0: world_data["look_scroll"] -= 1 elif string == "down" and world_data["look_scroll"] \