summaryrefslogtreecommitdiffstats
path: root/crawl-ref
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-12 15:30:14 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-12 15:30:14 +0000
commitdb1637840912b714a5c3c636728e4d0f59e662b1 (patch)
treeb55aedf47f6cecac69a377b5d179d866b78deccf /crawl-ref
parent1bff3c05ddd42eda0d5310b4d1f2671aae52815d (diff)
downloadcrawl-ref-db1637840912b714a5c3c636728e4d0f59e662b1.tar.gz
crawl-ref-db1637840912b714a5c3c636728e4d0f59e662b1.zip
Add minor cosmetic fixes.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5762 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref')
-rw-r--r--crawl-ref/source/religion.cc6
1 files changed, 2 insertions, 4 deletions
diff --git a/crawl-ref/source/religion.cc b/crawl-ref/source/religion.cc
index 3dcd2930fb..5b46c34eb7 100644
--- a/crawl-ref/source/religion.cc
+++ b/crawl-ref/source/religion.cc
@@ -494,10 +494,8 @@ void dec_penance(int val)
bool beogh_water_walk()
{
- return
- you.religion == GOD_BEOGH &&
- !player_under_penance() &&
- you.piety >= piety_breakpoint(4);
+ return (you.religion == GOD_BEOGH && !player_under_penance()
+ && you.piety >= piety_breakpoint(4));
}
static bool _need_water_walking()