summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/files.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-12-23 18:02:07 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-12-23 18:02:07 +0000
commiteb8fb2b966c556c85ae176a98596b15d604e3fe9 (patch)
tree6fd804df3bb3b3e03426178b2c37e7818be4d61b /crawl-ref/source/files.cc
parent9c1205b7aba72d91455b6454e71a2c946e74328e (diff)
downloadcrawl-ref-eb8fb2b966c556c85ae176a98596b15d604e3fe9.tar.gz
crawl-ref-eb8fb2b966c556c85ae176a98596b15d604e3fe9.zip
Make enslaved souls the EC_UNHOLY color, and make zombies shovable.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@7916 c06c8d41-db1a-0410-9941-cceddc491573
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;