home · contact · privacy
7DRL: Add vegetation-friendly land, make plant spread depend on it.
[plomrogue] / src / client / draw_wins.c
index ffc9ba25d0eb2818616b469fd70dbe9c827dbf55..b636678e9597599f8e54a09efbc8429049883284 100644 (file)
@@ -425,7 +425,7 @@ extern void draw_win_map(struct Win * win)
             // if (' ' != world.map.cells[y*world.map.length + x])
             {
                 attr_t a = COLOR_PAIR(4); //
-                if ('.' == c) //
+                if ('.' == c || ':' == c) //
                 { //
                     a = COLOR_PAIR(5); //
                 } //
@@ -441,7 +441,7 @@ extern void draw_win_map(struct Win * win)
                 { //
                     a = COLOR_PAIR(8); //
                 } //
-                else if (':' == c || '%' == c) //
+                else if ('$' == c || '%' == c) //
                 { //
                     a = COLOR_PAIR(9); //
                 } //