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.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/spl-cast.cc b/crawl-ref/source/spl-cast.cc
index 565e21ab31..085426734a 100644
--- a/crawl-ref/source/spl-cast.cc
+++ b/crawl-ref/source/spl-cast.cc
@@ -1610,7 +1610,7 @@ spret_type your_spells(spell_type spell, int powc, bool allow_fail)
case SPELL_SLEEP:
{
const int sleep_power =
- stepdown_value( powc * 9 / 10, 5, 35, 45, 50 );
+ stepdown_value(powc * 9 / 10, 5, 35, 45, 50);
#ifdef DEBUG_DIAGNOSTICS
mprf(MSGCH_DIAGNOSTICS, "Sleep power stepdown: %d -> %d",
powc, sleep_power);