summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/files.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/files.cc')
-rw-r--r--crawl-ref/source/files.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/files.cc b/crawl-ref/source/files.cc
index 5e56f77f61..7dad243f4b 100644
--- a/crawl-ref/source/files.cc
+++ b/crawl-ref/source/files.cc
@@ -954,8 +954,8 @@ static bool _grab_follower_at(const coord_def &pos)
if (!fmenv || !fmenv->alive())
return (false);
- // Monster has to be already tagged in order to follow.
- if (!testbits( fmenv->flags, MF_TAKING_STAIRS ))
+ // The monster has to already be tagged in order to follow.
+ if (!testbits(fmenv->flags, MF_TAKING_STAIRS))
return (false);
level_id dest = level_id::current();
@@ -978,7 +978,7 @@ static void _grab_followers()
const bool can_follow = level_type_allows_followers(you.level_type);
// Handle nearby ghosts.
- for ( adjacent_iterator ai; ai; ++ai )
+ for (adjacent_iterator ai; ai; ++ai)
{
if (mgrd(*ai) == NON_MONSTER)
continue;