summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/effects.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-05-03 02:08:19 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-05-03 02:08:19 +0000
commit0957ee49bf881d1d708d7fcd6203d97cd600aa8a (patch)
tree773d135f9bae909229fc07ad4484a86756b16f7b /crawl-ref/source/effects.cc
parent0dd9c1bfeb1f023ab63135bf98f15558b22c0f35 (diff)
downloadcrawl-ref-0957ee49bf881d1d708d7fcd6203d97cd600aa8a.tar.gz
crawl-ref-0957ee49bf881d1d708d7fcd6203d97cd600aa8a.zip
Add more comment fixes.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@4826 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/effects.cc')
-rw-r--r--crawl-ref/source/effects.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/crawl-ref/source/effects.cc b/crawl-ref/source/effects.cc
index 81f96c8b22..fe4f8931e0 100644
--- a/crawl-ref/source/effects.cc
+++ b/crawl-ref/source/effects.cc
@@ -141,8 +141,8 @@ int holy_word_monsters(int x, int y, int pow, int caster)
if (hploss < 0)
hploss = 0;
- // Holy word annoys the monsters it affects because it (currently)
- // can kill them.
+ // Currently, holy word annoys the monsters it affects because it
+ // can kill them, and because hostile monsters don't use it.
behaviour_event(monster, ME_ANNOY, MHITYOU);
hurt_monster(monster, hploss);
@@ -271,8 +271,8 @@ int torment_monsters(int x, int y, int pow, int caster)
if (hploss < 0)
hploss = 0;
- // Torment doesn't annoy the monsters it affects because it
- // (currently) can't kill them.
+ // Currently, torment doesn't annoy the monsters it affects because
+ // it can't kill them, and because hostile monsters use it.
hurt_monster(monster, hploss);
if (hploss)