X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=plugins%2Fclient%2FTheCrawlingEater.py;fp=plugins%2Fclient%2FTheCrawlingEater.py;h=6798e9c23f5d022eb47d475a7b54354857c23e69;hb=dfd04a4d5f8736535b5118fd94eff1de6a627830;hp=1685f33866a5d742e2d75154a5f57d679d763267;hpb=4fe64d30e61c13de6f6d32277aa7373130bd60cf;p=plomrogue diff --git a/plugins/client/TheCrawlingEater.py b/plugins/client/TheCrawlingEater.py index 1685f33..6798e9c 100644 --- a/plugins/client/TheCrawlingEater.py +++ b/plugins/client/TheCrawlingEater.py @@ -29,6 +29,7 @@ def win_map(self): "4": "#", "5": "X", "*": "O", + "&": "0", } win_size = self.size offset = [0, 0] @@ -109,6 +110,8 @@ def win_map(self): attribute = water_colors[wetval + (mapval - 1)] else: attribute = earth_colors[mapval] + if char == "&": + attribute = col_player if char in charmap: char = charmap[char] elif char == "@":