summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mon-stuff.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2010-01-16 02:47:31 +0100
committerAdam Borowski <kilobyte@angband.pl>2010-01-16 02:47:31 +0100
commitcd1279820c73e2d44d5ca58f1cf62f2ee0bc769d (patch)
treef797f813746d28f02ddc505d043f1b26cc38e28e /crawl-ref/source/mon-stuff.cc
parent3c9a8035199bcaf485557df84a37a557426ff915 (diff)
downloadcrawl-ref-cd1279820c73e2d44d5ca58f1cf62f2ee0bc769d.tar.gz
crawl-ref-cd1279820c73e2d44d5ca58f1cf62f2ee0bc769d.zip
Unlike other dummy monsters, disallow polymorph into dwarves.
Diffstat (limited to 'crawl-ref/source/mon-stuff.cc')
-rw-r--r--crawl-ref/source/mon-stuff.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/crawl-ref/source/mon-stuff.cc b/crawl-ref/source/mon-stuff.cc
index 68c98abb4f..92d9716056 100644
--- a/crawl-ref/source/mon-stuff.cc
+++ b/crawl-ref/source/mon-stuff.cc
@@ -2280,7 +2280,9 @@ static bool _valid_morph(monsters *monster, monster_type new_mclass)
// Other poly-unsuitable things.
|| new_mclass == MONS_ORB_GUARDIAN
+ || new_mclass == MONS_DWARF
|| mons_is_statue(new_mclass)
+ || mons_is_projectile(new_mclass)
// The spell on Prince Ribbit can't be broken so easily.
|| (new_mclass == MONS_HUMAN && monster->type == MONS_PRINCE_RIBBIT))