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.cc8
1 files changed, 7 insertions, 1 deletions
diff --git a/crawl-ref/source/ouch.cc b/crawl-ref/source/ouch.cc
index 432cc7b440..93eaacd48b 100644
--- a/crawl-ref/source/ouch.cc
+++ b/crawl-ref/source/ouch.cc
@@ -1130,7 +1130,7 @@ void ouch(int dam, int death_source, kill_method_type death_type,
// Okay, you *didn't* escape death.
you.reset_escaped_death();
- // Ensure some minimal information about Xom's involvment.
+ // Ensure some minimal information about Xom's involvement.
if (aux == NULL || strlen(aux) == 0)
{
if (death_type != KILLED_BY_XOM)
@@ -1139,6 +1139,12 @@ void ouch(int dam, int death_source, kill_method_type death_type,
else if (strstr(aux, "Xom") == NULL)
death_type = KILLED_BY_XOM;
}
+ // Xom may still try to save your life.
+ else if (xom_saves_your_life(dam, death_source, death_type, aux,
+ see_source))
+ {
+ return;
+ }
#if WIZARD || DEBUG
if (you.never_die)