summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/ouch.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/ouch.cc')
-rw-r--r--crawl-ref/source/ouch.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/ouch.cc b/crawl-ref/source/ouch.cc
index d288dd0d30..ddd810801d 100644
--- a/crawl-ref/source/ouch.cc
+++ b/crawl-ref/source/ouch.cc
@@ -851,9 +851,9 @@ static void _maybe_spawn_jellies(int dam, const char* aux,
int how_many = 0;
if (dam >= you.hp_max * 0.75)
how_many = random2(4) + 2;
- else if(dam >= you.hp_max / 2)
+ else if (dam >= you.hp_max / 2)
how_many = random2(2) + 2;
- else if(dam >= you.hp_max / 4)
+ else if (dam >= you.hp_max / 4)
how_many = random2(1) + 1;
if (how_many > 0)