From be64c92077ad22a9fff1abda66f92ec0149bf962 Mon Sep 17 00:00:00 2001 From: Petr Baudis Date: Sun, 27 Nov 2011 07:41:23 +0100 Subject: [PATCH] tile::str(): Report herb --- map.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/map.cc b/map.cc index 681b5c0..ddfe787 100644 --- a/map.cc +++ b/map.cc @@ -72,7 +72,7 @@ tile::str(void) snprintf(str_buf, sizeof(str_buf), "%c%c", type_symbol(), - agent ? (!agent->dead ? 'A' : 'a') : '-'); + agent ? (!agent->dead ? (herb_here() ? 'x' : 'A') : 'a') : '-'); return str_buf; }