summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/religion.cc
diff options
context:
space:
mode:
authorNicholas Feinberg <pleasingfung@gmail.com>2014-07-10 19:56:36 -0700
committerNicholas Feinberg <pleasingfung@gmail.com>2014-07-10 19:56:57 -0700
commit26a88daec5cbddc2b0fee517283943e43f1eb93a (patch)
tree268052cbd45989525c1b5738b1dead73a95d09e7 /crawl-ref/source/religion.cc
parent2d02254e2a32210f89c273abe4282c7d6b6b1b23 (diff)
downloadcrawl-ref-26a88daec5cbddc2b0fee517283943e43f1eb93a.tar.gz
crawl-ref-26a88daec5cbddc2b0fee517283943e43f1eb93a.zip
Simplify. (Grunt)
Diffstat (limited to 'crawl-ref/source/religion.cc')
-rw-r--r--crawl-ref/source/religion.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/religion.cc b/crawl-ref/source/religion.cc
index 3279ee8f60..ca4b76d42a 100644
--- a/crawl-ref/source/religion.cc
+++ b/crawl-ref/source/religion.cc
@@ -1229,7 +1229,7 @@ static void _inc_penance(god_type god, int val)
you.redraw_armour_class = true;
if (_need_water_walking() && !beogh_water_walk())
- fall_into_a_pool(you.pos(), grd(you.pos()));
+ fall_into_a_pool(grd(you.pos()));
}
// Neither does Trog's regeneration or magic resistance.
else if (god == GOD_TROG)
@@ -2651,7 +2651,7 @@ void lose_piety(int pgn)
"You can no longer %s.", i);
if (_need_water_walking() && !beogh_water_walk())
- fall_into_a_pool(you.pos(), grd(you.pos()));
+ fall_into_a_pool(grd(you.pos()));
if (you_worship(GOD_QAZLAL) && i == 3)
{
@@ -2848,7 +2848,7 @@ void excommunication(god_type new_god)
case GOD_BEOGH:
// You might have lost water walking at a bad time...
if (_need_water_walking())
- fall_into_a_pool(you.pos(), grd(you.pos()));
+ fall_into_a_pool(grd(you.pos()));
if (query_da_counter(DACT_ALLY_BEOGH))
{