From fb371877bc9f844e1c85161f4fef8319b9ee677f Mon Sep 17 00:00:00 2001
From: Christian Heller <c.heller@plomlompom.de>
Date: Sun, 13 Mar 2016 11:59:00 +0100
Subject: [PATCH] TCE: Improve look mode cursor info.

---
 plugins/client/TheCrawlingEater.py | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

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
-- 
2.30.2