summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spells2.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-03-13 19:44:25 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-03-13 19:44:25 +0000
commit82f5dc3055d25affb028f5e08ea834da326cb683 (patch)
treead6f7537c44e663c39a5293ec81f2ed7b82254a8 /crawl-ref/source/spells2.cc
parentac47f23453abed6f2b26174bd01121cb033f59a5 (diff)
downloadcrawl-ref-82f5dc3055d25affb028f5e08ea834da326cb683.tar.gz
crawl-ref-82f5dc3055d25affb028f5e08ea834da326cb683.zip
Fix comment.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@9435 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/spells2.cc')
-rw-r--r--crawl-ref/source/spells2.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/spells2.cc b/crawl-ref/source/spells2.cc
index 6c52094cb7..2204706c08 100644
--- a/crawl-ref/source/spells2.cc
+++ b/crawl-ref/source/spells2.cc
@@ -756,7 +756,7 @@ bool vampiric_drain(int pow, const dist &vmove)
return (false);
}
- // The practical maximum of this is about 25 (pow @ 100). -- bwr
+ // The practical maximum of this is about 25 (pow @ 100). - bwr
int hp_gain = 3 + random2avg(9, 2) + random2(pow) / 7;
hp_gain = std::min(monster->hit_points, hp_gain);