X-Git-Url: https://plomlompom.com/repos/feed.xml?a=blobdiff_plain;f=plugins%2Fclient%2FPleaseTheIslandGod.py;h=7348e76256b8cbbe660d2bed80323cb1c667a581;hb=98f19424a1201f9335d7168b3d32150ecc28542b;hp=808d7938afec0445f295c3dfb08e55bd3860ddce;hpb=7455f5dd03050c10d9e5fa83fde162ba9ad4157f;p=plomrogue diff --git a/plugins/client/PleaseTheIslandGod.py b/plugins/client/PleaseTheIslandGod.py index 808d793..7348e76 100644 --- a/plugins/client/PleaseTheIslandGod.py +++ b/plugins/client/PleaseTheIslandGod.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.io import io from client.config.world_data import world_data world_data["log"][-2] = "STATS OVERVIEW: " \ @@ -137,11 +142,26 @@ def win_map(self): from client.config.windows import windows_config from client.windows import win_log, win_inventory, win_look windows_config[:] = [ - {"config": [1, 33], "func": win_info, "title": "Stats"}, - {"config": [-7, 33], "func": win_log, "title": "Log"}, - {"config": [4, 16], "func": win_inventory, "title": "Inventory"}, - {"config": [4, 16], "func": win_look, "title": "Things here"}, - {"config": [0, -34], "func": win_map, "title": "PLEASE THE ISLAND GOD"} + {"config": [1, 33], + "func": win_info, + "scroll_hints": True, + "title": "Stats"}, + {"config": [-7, 33], + "func": win_log, + "scroll_hints": True, + "title": "Log"}, + {"config": [4, 16], + "func": win_inventory, + "scroll_hints": True, + "title": "Inventory"}, + {"config": [4, 16], + "func": win_look, + "scroll_hints": True, + "title": "Things here"}, + {"config": [0, -34], + "func": win_map, + "scroll_hints": True, + "title": "PLEASE THE ISLAND GOD"} ] from client.window_management import set_windows set_windows()