summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/attack.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/attack.cc')
-rw-r--r--crawl-ref/source/attack.cc3
1 files changed, 2 insertions, 1 deletions
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);