summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/stuff.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-18 16:16:14 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-18 16:16:14 +0000
commit7cc40f73096f5552ffb3729c172c155a874a191c (patch)
tree9196759ba07b039e10eaae8b67d05bf82a533c5c /crawl-ref/source/stuff.cc
parent43e59e762612baa4d1e9c05bbd39514d8620bd16 (diff)
downloadcrawl-ref-7cc40f73096f5552ffb3729c172c155a874a191c.tar.gz
crawl-ref-7cc40f73096f5552ffb3729c172c155a874a191c.zip
Simplify.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5949 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/stuff.cc')
-rw-r--r--crawl-ref/source/stuff.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/stuff.cc b/crawl-ref/source/stuff.cc
index d5ba752a98..48d957293f 100644
--- a/crawl-ref/source/stuff.cc
+++ b/crawl-ref/source/stuff.cc
@@ -320,7 +320,7 @@ static bool tag_follower_at(const coord_def &pos)
return (false);
// Orcs will follow Beogh worshippers.
- if (you.religion != GOD_BEOGH || !is_orcish_follower(fmenv))
+ if (you.religion != GOD_BEOGH || !is_follower(fmenv))
return (false);
}