summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/effects.cc
diff options
context:
space:
mode:
authorChris Campbell <chriscampbell89@gmail.com>2014-03-30 21:27:26 +0100
committerChris Campbell <chriscampbell89@gmail.com>2014-03-30 21:35:00 +0100
commitc144fa5b392b3c6a2e8756b93aea3a7aba54344c (patch)
treebdca97974a96bac8d0b6213a594af07a16d0ab58 /crawl-ref/source/effects.cc
parent2f27df60033e70cae85f58705e9091beaba3d203 (diff)
downloadcrawl-ref-c144fa5b392b3c6a2e8756b93aea3a7aba54344c.tar.gz
crawl-ref-c144fa5b392b3c6a2e8756b93aea3a7aba54344c.zip
Don't increase holy word power when worshipping a good god
It was a strange hidden effect, and holy word is very strong at its regular power anyway. Also remove the fear enchantment which didn't actually have an effect.
Diffstat (limited to 'crawl-ref/source/effects.cc')
-rw-r--r--crawl-ref/source/effects.cc4
1 files changed, 1 insertions, 3 deletions
diff --git a/crawl-ref/source/effects.cc b/crawl-ref/source/effects.cc
index f058a9fbd6..d6f32b0411 100644
--- a/crawl-ref/source/effects.cc
+++ b/crawl-ref/source/effects.cc
@@ -160,7 +160,7 @@ void holy_word_monsters(coord_def where, int pow, holy_word_source_type source,
if (!hploss || !mons->alive())
return;
- // Holy word won't annoy, slow, or frighten its user.
+ // Holy word won't annoy or stun its user.
if (attacker != mons)
{
// Currently, holy word annoys the monsters it affects
@@ -177,8 +177,6 @@ void holy_word_monsters(coord_def where, int pow, holy_word_source_type source,
if (mons->speed_increment >= 25)
mons->speed_increment -= 20;
-
- mons->add_ench(ENCH_FEAR);
}
}