summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mutation.cc
diff options
context:
space:
mode:
authorreaverb <reaverb.Crawl@gmail.com>2014-05-25 02:53:41 -0400
committerreaverb <reaverb.Crawl@gmail.com>2014-05-25 03:03:22 -0400
commit817b8bcefcbe904fcc22ea31092ad1131c266629 (patch)
tree46f14a58feb8685e22c65924ba018101bb2a297c /crawl-ref/source/mutation.cc
parente63b8743aef0a7eb483ab65972e2bc03c5c188d3 (diff)
downloadcrawl-ref-817b8bcefcbe904fcc22ea31092ad1131c266629.tar.gz
crawl-ref-817b8bcefcbe904fcc22ea31092ad1131c266629.zip
Give Foul Stench DS Rot Immunity instead of Saprovore.
They already received it at Foul Stench 1, but Saprovore is a minor enough effect just moving rot immunity earlier is fine compensation.
Diffstat (limited to 'crawl-ref/source/mutation.cc')
-rw-r--r--crawl-ref/source/mutation.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/mutation.cc b/crawl-ref/source/mutation.cc
index dde54e8f42..d23c750c4f 100644
--- a/crawl-ref/source/mutation.cc
+++ b/crawl-ref/source/mutation.cc
@@ -2190,7 +2190,7 @@ static const facet_def _demon_facets[] =
{ -33, 0, 0 } },
{ 2, { MUT_POWERED_BY_PAIN, MUT_POWERED_BY_PAIN, MUT_POWERED_BY_PAIN },
{ -33, 0, 0 } },
- { 2, { MUT_SAPROVOROUS, MUT_FOUL_STENCH, MUT_FOUL_STENCH },
+ { 2, { MUT_ROT_IMMUNITY, MUT_FOUL_STENCH, MUT_FOUL_STENCH },
{ -33, 0, 0 } },
{ 2, { MUT_MANA_SHIELD, MUT_MANA_REGENERATION, MUT_MANA_LINK },
{ -33, 0, 0 } },
@@ -2304,7 +2304,7 @@ try_again:
if (m == MUT_CONSERVE_SCROLLS)
fire_elemental++;
- if (m == MUT_SAPROVOROUS || m == MUT_IGNITE_BLOOD)
+ if (m == MUT_ROT_IMMUNITY || m == MUT_IGNITE_BLOOD)
cloud_producing++;
}