summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/main.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/main.cc b/crawl-ref/source/main.cc
index 8070f77887..d3feb08c00 100644
--- a/crawl-ref/source/main.cc
+++ b/crawl-ref/source/main.cc
@@ -2893,8 +2893,8 @@ void world_reacts()
stop_running();
you.increase_duration(DUR_PARALYSIS, 5 + random2(8), 13);
- if (you.religion == GOD_XOM && get_tension() > 0)
- xom_is_stimulated(255);
+ if (you.religion == GOD_XOM)
+ xom_is_stimulated(get_tension() > 0 ? 255 : 128);
}
if (you.hunger <= 100)