summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/fight.cc7
1 files changed, 4 insertions, 3 deletions
diff --git a/crawl-ref/source/fight.cc b/crawl-ref/source/fight.cc
index 3d4f466d64..a63a8af7a1 100644
--- a/crawl-ref/source/fight.cc
+++ b/crawl-ref/source/fight.cc
@@ -617,11 +617,12 @@ bool melee_attack::attack()
|| (is_good_god(you.religion) && (isNeutral || isHoly))
|| (you.religion == GOD_SHINING_ONE && isUnchivalric))
{
- snprintf(info, INFO_SIZE, "Really attack this %s%s creature?",
+ snprintf(info, INFO_SIZE, "Really attack this %s%s%s creature?",
+ (isUnchivalric) ? "helpless "
+ : "",
(isFriendly) ? "friendly " :
(wontAttack) ? "non-hostile " :
- (isNeutral) ? "neutral " :
- (isUnchivalric) ? "helpless "
+ (isNeutral) ? "neutral "
: "",
(isHoly) ? "holy"
: "");