summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/cloud.cc
diff options
context:
space:
mode:
authorShmuale Mark <shm.mark@gmail.com>2014-06-11 12:43:26 -0400
committerShmuale Mark <shm.mark@gmail.com>2014-06-11 14:24:47 -0400
commitcafd201989aecaebdc06ba353341be16bdbe0fd9 (patch)
treea43d09e5ad220ce5322bfa0919c573354e5025d1 /crawl-ref/source/cloud.cc
parent3de993f02c4bed1965ab08f9ec0803c66b83e503 (diff)
downloadcrawl-ref-cafd201989aecaebdc06ba353341be16bdbe0fd9.tar.gz
crawl-ref-cafd201989aecaebdc06ba353341be16bdbe0fd9.zip
Make mutagenic fog give glow instead of bad mutations (#2466).
Diffstat (limited to 'crawl-ref/source/cloud.cc')
-rw-r--r--crawl-ref/source/cloud.cc7
1 files changed, 4 insertions, 3 deletions
diff --git a/crawl-ref/source/cloud.cc b/crawl-ref/source/cloud.cc
index ca824590ab..fc7790b351 100644
--- a/crawl-ref/source/cloud.cc
+++ b/crawl-ref/source/cloud.cc
@@ -1029,9 +1029,10 @@ static bool _actor_apply_cloud_side_effects(actor *act,
{
if (player)
{
- mpr("Strange energies course through your body.");
- return mutate(one_chance_in(5) ? RANDOM_MUTATION : RANDOM_BAD_MUTATION,
- "mutagenic cloud");
+ mpr("The mutagenic energy flows into you.");
+ // It's possible that you got trampled into the mutagenic cloud and it's not your fault...
+ contaminate_player(1000, false);
+ return true;
}
else if (mons->malmutate("mutagenic cloud"))
{