summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/religion.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-04-24 17:01:04 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-04-24 17:01:04 +0000
commit53013eced97be48cfb75b739061d1939d9fb9cc3 (patch)
treeae6d52024820ea007b8c2b045d6e46c56397b87c /crawl-ref/source/religion.cc
parent7ca99d41069c089c7b3a291f1d05aac9943310a1 (diff)
downloadcrawl-ref-53013eced97be48cfb75b739061d1939d9fb9cc3.tar.gz
crawl-ref-53013eced97be48cfb75b739061d1939d9fb9cc3.zip
Comment fixes.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@4592 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/religion.cc')
-rw-r--r--crawl-ref/source/religion.cc8
1 files changed, 5 insertions, 3 deletions
diff --git a/crawl-ref/source/religion.cc b/crawl-ref/source/religion.cc
index a439530a5b..2cb741aa9f 100644
--- a/crawl-ref/source/religion.cc
+++ b/crawl-ref/source/religion.cc
@@ -1015,7 +1015,8 @@ static bool _tso_blessing_friendliness(monsters *mon)
return true;
}
-// IF you don't currently have any followers, send a small band to help you out.
+// If you don't currently have any followers, send a small band to help
+// you out.
static bool _beogh_blessing_reinforcement()
{
bool success = false;
@@ -1025,7 +1026,7 @@ static bool _beogh_blessing_reinforcement()
MONS_ORC, MONS_ORC_WIZARD, MONS_ORC_PRIEST
};
- // up to four orcish followers
+ // Send up to four followers.
int how_many = random2(4) + 1;
for (int i = 0; i < how_many; ++i)
@@ -1112,7 +1113,8 @@ bool bless_follower(int follower,
if (!reinforced || coinflip())
{
- // try again, or possibly get some more
+ // Try again, or possibly send more
+ // reinforcement.
if (_beogh_blessing_reinforcement())
reinforced = true;
}