summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/religion.cc
diff options
context:
space:
mode:
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;
}