tile::str(): Report herb

This commit is contained in:
Petr Baudis 2011-11-27 07:41:23 +01:00
parent 529c401457
commit be64c92077

2
map.cc
View file

@ -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;
}