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 6b5fa0f142..0b1ed073e1 100644
--- a/crawl-ref/source/ouch.cc
+++ b/crawl-ref/source/ouch.cc
@@ -828,11 +828,11 @@ void ouch( int dam, int death_source, kill_method_type death_type,
{
if (dam >= you.hp && god_protects_from_harm(you.religion))
{
- simple_god_message( " protects you from harm!" );
+ simple_god_message(" protects you from harm!");
return;
}
- dec_hp( dam, true );
+ dec_hp(dam, true);
// Even if we have low HP messages off, we'll still give a
// big hit warning (in this case, a hit for half our HPs) -- bwr