From 6011983f9d40123b5b7e9ec536da6b335e814db2 Mon Sep 17 00:00:00 2001 From: Johanna Ploog Date: Thu, 14 Jan 2010 13:02:34 +0100 Subject: Also handle alligator snapping turtle's corpse tile. --- crawl-ref/source/tilepick.cc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'crawl-ref/source/tilepick.cc') diff --git a/crawl-ref/source/tilepick.cc b/crawl-ref/source/tilepick.cc index cb631c1d72..ec4b758bdc 100644 --- a/crawl-ref/source/tilepick.cc +++ b/crawl-ref/source/tilepick.cc @@ -1862,8 +1862,9 @@ static int _tileidx_corpse(const item_def &item) // turtles ('t') case MONS_SNAPPING_TURTLE: - case MONS_ALLIGATOR_SNAPPING_TURTLE: // TODO - return TILE_CORPSE_TURTLE; + return TILE_CORPSE_SNAPPING_TURTLE; + case MONS_ALLIGATOR_SNAPPING_TURTLE: + return TILE_CORPSE_ALLIGATOR_SNAPPING_TURTLE; // ugly things ('u') case MONS_UGLY_THING: -- cgit v1.2.3-54-g00ecf