summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tilepick.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2009-12-16 14:10:31 +0100
committerAdam Borowski <kilobyte@angband.pl>2009-12-16 14:11:31 +0100
commit1ad4408f777422c5ac66d98568101bdd1519feec (patch)
tree18d465c087f605ff39abce432ff05954a0fc6424 /crawl-ref/source/tilepick.cc
parent305ccfbf1bfaea3b129c956b285c29c6a6f037ba (diff)
downloadcrawl-ref-1ad4408f777422c5ac66d98568101bdd1519feec.tar.gz
crawl-ref-1ad4408f777422c5ac66d98568101bdd1519feec.zip
Rename grey snakes to anacondas. Give them constriction, message-only for now.
Diffstat (limited to 'crawl-ref/source/tilepick.cc')
-rw-r--r--crawl-ref/source/tilepick.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/crawl-ref/source/tilepick.cc b/crawl-ref/source/tilepick.cc
index 3d2794ecd8..af9293e656 100644
--- a/crawl-ref/source/tilepick.cc
+++ b/crawl-ref/source/tilepick.cc
@@ -642,8 +642,8 @@ int tileidx_monster_base(const monsters *mon, bool detected)
return TILEP_MONS_BLACK_MAMBA;
case MONS_VIPER:
return TILEP_MONS_VIPER;
- case MONS_GREY_SNAKE:
- return TILEP_MONS_GREY_SNAKE;
+ case MONS_ANACONDA:
+ return TILEP_MONS_ANACONDA;
// trolls ('T')
case MONS_TROLL:
@@ -1958,8 +1958,8 @@ static int _tileidx_corpse(const item_def &item)
return TILE_CORPSE_SMALL_SNAKE;
case MONS_SNAKE:
return TILE_CORPSE_SNAKE;
- case MONS_GREY_SNAKE:
- return TILE_CORPSE_GREY_SNAKE;
+ case MONS_ANACONDA:
+ return TILE_CORPSE_ANACONDA;
case MONS_WATER_MOCCASIN:
return TILE_CORPSE_WATER_MOCCASIN;
case MONS_BLACK_MAMBA: