summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/monstuff.cc
diff options
context:
space:
mode:
authorzelgadis <zelgadis@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-13 07:31:53 +0000
committerzelgadis <zelgadis@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-13 07:31:53 +0000
commit97bdcb5bee32a6bf4538817419510ff44c66a791 (patch)
tree3e79b70a2add7f809a88a87f794603d1ef2358ef /crawl-ref/source/monstuff.cc
parent75f9186ae567f69eea6aefe43969db3a73b97a2d (diff)
downloadcrawl-ref-97bdcb5bee32a6bf4538817419510ff44c66a791.tar.gz
crawl-ref-97bdcb5bee32a6bf4538817419510ff44c66a791.zip
Tiamat should drop a plain draconian corpse, rather than dropping different
types depending upon what colour she was at death. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@8438 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/monstuff.cc')
-rw-r--r--crawl-ref/source/monstuff.cc7
1 files changed, 6 insertions, 1 deletions
diff --git a/crawl-ref/source/monstuff.cc b/crawl-ref/source/monstuff.cc
index 1243f44ce1..60e06e2995 100644
--- a/crawl-ref/source/monstuff.cc
+++ b/crawl-ref/source/monstuff.cc
@@ -335,7 +335,12 @@ int fill_out_corpse(const monsters* monster, item_def& corpse,
}
if (corpse_class == MONS_DRACONIAN)
- corpse_class = draco_subspecies(monster);
+ {
+ if (monster->type == MONS_TIAMAT)
+ corpse_class = MONS_DRACONIAN;
+ else
+ corpse_class = draco_subspecies(monster);
+ }
if (monster->has_ench(ENCH_SHAPESHIFTER))
corpse_class = MONS_SHAPESHIFTER;