summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tilepick.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/tilepick.cc')
-rw-r--r--crawl-ref/source/tilepick.cc6
1 files changed, 5 insertions, 1 deletions
diff --git a/crawl-ref/source/tilepick.cc b/crawl-ref/source/tilepick.cc
index 34cbf7eb7f..723dbc0d00 100644
--- a/crawl-ref/source/tilepick.cc
+++ b/crawl-ref/source/tilepick.cc
@@ -199,7 +199,9 @@ int tileidx_monster_base(const monsters *mon, bool detected)
// fungi ('f')
case MONS_BALLISTOMYCETE:
- return TILEP_MONS_FUNGUS;
+ if (!detected && mon->has_ench(ENCH_SPORE_PRODUCTION))
+ return TILEP_MONS_BALLISTOMYCETE_ACTIVE;
+ return TILEP_MONS_BALLISTOMYCETE_INACTIVE;
case MONS_TOADSTOOL:
return TILEP_MONS_TOADSTOOL;
case MONS_FUNGUS:
@@ -2472,6 +2474,8 @@ int tileidx_feature(dungeon_feature_type feat, int gx, int gy)
return TILE_DNGN_ORCISH_IDOL;
case DNGN_WAX_WALL:
return TILE_DNGN_WAX_WALL;
+ case DNGN_TREES:
+ return TILE_DNGN_TREE;
case DNGN_GRANITE_STATUE:
return TILE_DNGN_GRANITE_STATUE;
case DNGN_LAVA: