summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/monstuff.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-07-18 23:23:27 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-07-18 23:23:27 +0000
commit482864797bfafce8a555c7fc754d7f0582da4bdb (patch)
tree343cb6dc5ebdfdcca7e87f4e9b93e7fca309f279 /crawl-ref/source/monstuff.cc
parent892868004cdb7228bf4ec44cc791ed29c29fea97 (diff)
downloadcrawl-ref-482864797bfafce8a555c7fc754d7f0582da4bdb.tar.gz
crawl-ref-482864797bfafce8a555c7fc754d7f0582da4bdb.zip
Also fix the check for the player's being undead in Jiyva's retribution,
and add yet more cleanups. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@10293 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/monstuff.cc')
-rw-r--r--crawl-ref/source/monstuff.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/crawl-ref/source/monstuff.cc b/crawl-ref/source/monstuff.cc
index 935b0bd4ff..d4d2bc673a 100644
--- a/crawl-ref/source/monstuff.cc
+++ b/crawl-ref/source/monstuff.cc
@@ -2070,13 +2070,13 @@ bool monster_polymorph(monsters *monster, monster_type targetc,
else if (targetc == MONS_PULSATING_LUMP)
str_polymon = " degenerates into ";
else if (you.religion == GOD_JIYVA
- && (targetc == MONS_OOZE
+ && (targetc == MONS_DEATH_OOZE
+ || targetc == MONS_OOZE
|| targetc == MONS_JELLY
|| targetc == MONS_BROWN_OOZE
- || targetc == MONS_ACID_BLOB
- || targetc == MONS_GIANT_AMOEBA
|| targetc == MONS_SLIME_CREATURE
- || targetc == MONS_DEATH_OOZE
+ || targetc == MONS_GIANT_AMOEBA
+ || targetc == MONS_ACID_BLOB
|| targetc == MONS_AZURE_JELLY))
{
// Message used for the Slimify ability.