summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeil Moore <neil@s-z.org>2014-08-07 19:32:35 -0400
committerNeil Moore <neil@s-z.org>2014-08-07 19:32:35 -0400
commita92369ba3b6999ed31d662ac40249d137984db4b (patch)
treee420000e079d20c5b14e3559c78972699fe8d5d2
parent82a59c624277434f08455446f635b8875c891a9b (diff)
downloadcrawl-ref-a92369ba3b6999ed31d662ac40249d137984db4b.tar.gz
crawl-ref-a92369ba3b6999ed31d662ac40249d137984db4b.zip
Use reflexive in one more place.
Was "The goblin hits the goblin but does no damage."
-rw-r--r--crawl-ref/source/melee_attack.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/melee_attack.cc b/crawl-ref/source/melee_attack.cc
index 22e1aa2945..9ae04b8c22 100644
--- a/crawl-ref/source/melee_attack.cc
+++ b/crawl-ref/source/melee_attack.cc
@@ -561,7 +561,7 @@ bool melee_attack::handle_phase_hit()
mprf("%s %s %s but %s no damage.",
attacker->name(DESC_THE).c_str(),
attack_verb.c_str(),
- defender->name(DESC_THE).c_str(),
+ defender_name(true).c_str(),
attacker->is_player() ? "do" : "does");
}