summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/fight.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/fight.cc')
-rw-r--r--crawl-ref/source/fight.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/fight.cc b/crawl-ref/source/fight.cc
index 62a4c9f76b..f6d5ae9471 100644
--- a/crawl-ref/source/fight.cc
+++ b/crawl-ref/source/fight.cc
@@ -728,8 +728,6 @@ bool melee_attack::player_attack()
bleed_onto_floor(where.x, where.y, defender->id(), blood, true);
}
- player_hurt_monster();
-
if (damage_done > 0 || !defender_visible)
player_announce_hit();
else if (!shield_blocked && damage_done <= 0)
@@ -738,6 +736,8 @@ bool melee_attack::player_attack()
make_stringf("You %s %s.", attack_verb.c_str(),
defender->name(DESC_NOCAP_THE).c_str());
}
+
+ player_hurt_monster();
if (damage_done)
player_exercise_combat_skills();