Spawn some herbs at startup

This commit is contained in:
Petr Baudis 2011-11-27 05:26:44 +01:00
parent b80ccfdffd
commit 4d697adc83
4 changed files with 27 additions and 0 deletions

2
map.cc
View file

@ -32,6 +32,8 @@ tile::symbol(void)
if (agent) {
if (agent->dead)
return 'a';
if (agent->attr.move < 0.01)
return 'x';
return '0' + (agent->id % 10);
}
return type_symbol();