X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=plugins%2Fclient%2FTheCrawlingEater.py;fp=plugins%2Fclient%2FTheCrawlingEater.py;h=86115e38ee3ed429299c8f9a8e9ec0c47e8e3ec1;hb=fb371877bc9f844e1c85161f4fef8319b9ee677f;hp=c91f16dc89a58b7b668c85db2f0cb874f4b2f3bb;hpb=690cfb4d09e6a058b7c5b59d76035dfbc114ec85;p=plomrogue diff --git a/plugins/client/TheCrawlingEater.py b/plugins/client/TheCrawlingEater.py index c91f16d..86115e3 100644 --- a/plugins/client/TheCrawlingEater.py +++ b/plugins/client/TheCrawlingEater.py @@ -85,8 +85,11 @@ def win_map(self): if world_data["look_mode"] and y == world_data["map_center"][0] \ and x == world_data["map_center"][1]: if char == " ": - char = world_data["mem_map"][pos] - winmap += [(char, curses.A_REVERSE), ("?", curses.A_REVERSE)] + bonus = "?" + else: + bonus = world_data["wetmap"][pos] + char = world_data["mem_map"][pos] + winmap += [(char, curses.A_REVERSE), (bonus, curses.A_REVERSE)] continue bonus = " " attribute = col_unknown