summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/fight.cc
diff options
context:
space:
mode:
authorharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2007-07-03 22:25:23 +0000
committerharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2007-07-03 22:25:23 +0000
commit4ca6e6f54fb244d70988222430738af0409de498 (patch)
tree61ad38c899f773efaf397039f65caffbcf09be1c /crawl-ref/source/fight.cc
parent00bb42dc5e7570932126361340420b339c0e265c (diff)
downloadcrawl-ref-4ca6e6f54fb244d70988222430738af0409de498.tar.gz
crawl-ref-4ca6e6f54fb244d70988222430738af0409de498.zip
Bad message on poisoning melee atacks (1747220).
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@1737 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/fight.cc')
-rw-r--r--crawl-ref/source/fight.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/fight.cc b/crawl-ref/source/fight.cc
index 9c020368d4..16bf66e41e 100644
--- a/crawl-ref/source/fight.cc
+++ b/crawl-ref/source/fight.cc
@@ -2739,7 +2739,7 @@ void melee_attack::mons_do_poison(const mon_attack_def &attk)
{
if (attacker_visible)
mprf("%s %s was poisonous!",
- attacker->name(DESC_CAP_YOUR).c_str(),
+ apostrophise(attacker->name(DESC_CAP_THE)).c_str(),
mons_attack_verb(attk).c_str());
}
else