From b16fe66b8da3dc6ba6cb853732eee8a440568d85 Mon Sep 17 00:00:00 2001 From: Neil Moore Date: Thu, 7 Aug 2014 19:08:32 -0400 Subject: Slightly improve a message. "The goblin blocks its own attack." instead of just "... its attack." --- crawl-ref/source/attack.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/crawl-ref/source/attack.cc b/crawl-ref/source/attack.cc index 68e1e0381c..6567742ab9 100644 --- a/crawl-ref/source/attack.cc +++ b/crawl-ref/source/attack.cc @@ -1604,7 +1604,8 @@ bool attack::attack_shield_blocked(bool verbose) mprf("%s %s %s attack.", def_name(DESC_THE).c_str(), defender->conj_verb("block").c_str(), - atk_name(DESC_ITS).c_str()); + attacker == defender ? "its own" + : atk_name(DESC_ITS).c_str()); } defender->shield_block_succeeded(attacker); -- cgit v1.2.3-54-g00ecf