summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spl-cast.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/spl-cast.cc')
-rw-r--r--crawl-ref/source/spl-cast.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/spl-cast.cc b/crawl-ref/source/spl-cast.cc
index 8dfbd94993..d20fc01ee7 100644
--- a/crawl-ref/source/spl-cast.cc
+++ b/crawl-ref/source/spl-cast.cc
@@ -2272,12 +2272,13 @@ static unsigned int _breakpoint_rank(int val, const int breakpoints[],
unsigned int result = 0;
while (result < num_breakpoints && val >= breakpoints[result])
++result;
+
return result;
}
const char* spell_hunger_string( spell_type spell )
{
- if ( you.is_undead == US_UNDEAD )
+ if (you.is_undead == US_UNDEAD)
return "N/A";
const int hunger = spell_hunger(spell);