summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/monster.cc
diff options
context:
space:
mode:
authorJude Brown <bookofjude@users.sourceforge.net>2009-11-30 16:22:39 +1000
committerJude Brown <bookofjude@users.sourceforge.net>2009-11-30 16:29:08 +1000
commit251dab31902af37f3f30a67fa197359e4b8972a5 (patch)
treee2863549b1c4e939fdc5d5791bff6929fec5e9e5 /crawl-ref/source/monster.cc
parent0655b711ff3a0ee40c555cc2bdf1bdbfdeb89420 (diff)
downloadcrawl-ref-251dab31902af37f3f30a67fa197359e4b8972a5.tar.gz
crawl-ref-251dab31902af37f3f30a67fa197359e4b8972a5.zip
Use nominative pronoun rather than objective in banishment messages.
This solves "Duvessa screams as her is devoured by a tear in reality".
Diffstat (limited to 'crawl-ref/source/monster.cc')
-rw-r--r--crawl-ref/source/monster.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/monster.cc b/crawl-ref/source/monster.cc
index e0de4331ed..f61b8dd4f8 100644
--- a/crawl-ref/source/monster.cc
+++ b/crawl-ref/source/monster.cc
@@ -2777,7 +2777,7 @@ void monsters::banish(const std::string &)
coord_def old_pos = pos();
if (!silenced(pos()) && can_speak())
- simple_monster_message(this, (" screams as " + pronoun(PRONOUN_OBJECTIVE)
+ simple_monster_message(this, (" screams as " + pronoun(PRONOUN_NOCAP)
+ " is devoured by a tear in reality.").c_str(),
MSGCH_BANISHMENT);
else