summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spells3.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/spells3.cc')
-rw-r--r--crawl-ref/source/spells3.cc10
1 files changed, 3 insertions, 7 deletions
diff --git a/crawl-ref/source/spells3.cc b/crawl-ref/source/spells3.cc
index 6f253178e9..a95ed565dc 100644
--- a/crawl-ref/source/spells3.cc
+++ b/crawl-ref/source/spells3.cc
@@ -1732,14 +1732,10 @@ int halo_radius()
if (you.religion == GOD_SHINING_ONE && you.piety >= piety_breakpoint(0)
&& !you.penance[GOD_SHINING_ONE])
{
- int radius = you.piety / 20;
- if (radius > 8)
- radius = 8;
-
- return radius;
+ return std::min(8, you.piety / 20);
}
- else
- return 0;
+
+ return 0;
}
bool inside_halo(int posx, int posy)