From eb8fb2b966c556c85ae176a98596b15d604e3fe9 Mon Sep 17 00:00:00 2001 From: dolorous Date: Tue, 23 Dec 2008 18:02:07 +0000 Subject: 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 --- crawl-ref/source/files.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'crawl-ref/source/files.cc') 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; -- cgit v1.2.3-54-g00ecf