summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/ouch.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-03-20 06:01:05 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-03-20 06:01:05 +0000
commitc8057b4430d1a552899846255def3e5d627f2472 (patch)
treeae4590cd6c4f436489bd3a61439dc82dac2dac58 /crawl-ref/source/ouch.cc
parent09df3fcb005f1164e5e0a813cd9dceae4f75dd93 (diff)
downloadcrawl-ref-c8057b4430d1a552899846255def3e5d627f2472.tar.gz
crawl-ref-c8057b4430d1a552899846255def3e5d627f2472.zip
Only display Xom's death message for Xom worshippers.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@9521 c06c8d41-db1a-0410-9941-cceddc491573
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 cb85f27986..718f0c7a7a 100644
--- a/crawl-ref/source/ouch.cc
+++ b/crawl-ref/source/ouch.cc
@@ -953,7 +953,7 @@ void ouch(int dam, int death_source, kill_method_type death_type,
// Also don't kill wizards testing Xom acts.
if ((crawl_state.repeat_cmd == CMD_WIZARD
- || crawl_state.prev_cmd == CMD_WIZARD)
+ || crawl_state.prev_cmd == CMD_WIZARD)
&& you.religion != GOD_XOM)
{
return;
@@ -962,7 +962,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 informfullness about Xom's involvment.
+ // Ensure some minimal information about Xom's involvment.
if (aux == NULL || strlen(aux) == 0)
{
if (death_type != KILLED_BY_XOM)