summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tilepick.cc
diff options
context:
space:
mode:
authorNicholas Feinberg <pleasingfung@gmail.com>2014-06-07 17:11:56 -0700
committerNicholas Feinberg <pleasingfung@gmail.com>2014-06-15 20:38:27 -0700
commit4d6b2eaccc57a13a8fe72fca8fc3db9678ca7c17 (patch)
tree86f3326b656d621ebd53dec1d4aa3c38f737b4ee /crawl-ref/source/tilepick.cc
parent3c45d0dbb16a72bf7eaa57357a4cf206156a0dab (diff)
downloadcrawl-ref-4d6b2eaccc57a13a8fe72fca8fc3db9678ca7c17.tar.gz
crawl-ref-4d6b2eaccc57a13a8fe72fca8fc3db9678ca7c17.zip
Add torpor snails
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 8b8ccdee4a..9fe177faaf 100644
--- a/crawl-ref/source/tilepick.cc
+++ b/crawl-ref/source/tilepick.cc
@@ -1382,6 +1382,8 @@ static tileidx_t _tileidx_monster_base(int type, bool in_water, int colour,
return TILEP_MONS_SWAMP_WORM;
case MONS_GIANT_LEECH:
return TILEP_MONS_GIANT_LEECH;
+ case MONS_TORPOR_SNAIL:
+ return TILEP_MONS_TORPOR_SNAIL;
// small abominations ('x')
case MONS_UNSEEN_HORROR:
@@ -3692,7 +3694,7 @@ static tileidx_t _tileidx_corpse(const item_def &item)
return ugly_corpse_tile + colour_offset;
}
- // worms ('w')
+ // worms and gastropods ('w')
case MONS_WORM:
return TILE_CORPSE_WORM;
case MONS_BRAIN_WORM:
@@ -3701,6 +3703,8 @@ static tileidx_t _tileidx_corpse(const item_def &item)
return TILE_CORPSE_SWAMP_WORM;
case MONS_GIANT_LEECH:
return TILE_CORPSE_GIANT_LEECH;
+ case MONS_TORPOR_SNAIL:
+ return TILE_CORPSE_TORPOR_SNAIL;
// flying insects ('y')
case MONS_VAMPIRE_MOSQUITO: