summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/behold.cc
diff options
context:
space:
mode:
authorRobert Burnham <burnhamrobertp@gmail.com>2011-03-25 13:07:29 -0500
committerRobert Burnham <burnhamrobertp@gmail.com>2011-03-25 13:07:29 -0500
commit01145de6bffcce1c81bb73bf19e4e237f3a4e530 (patch)
tree91e2889ecb9942baec89c46a5a30896fff3595a4 /crawl-ref/source/behold.cc
parent9242c46d952778bcf1b2f7e1f188b171c26af7af (diff)
downloadcrawl-ref-01145de6bffcce1c81bb73bf19e4e237f3a4e530.tar.gz
crawl-ref-01145de6bffcce1c81bb73bf19e4e237f3a4e530.zip
Replace DESC_CAP_THE with DESC_THE
Also makes some replacements for DESC_CAP_YOUR, DESC_NOCAP_YOUR, DESC_CAP_A, DESC_NOCAP_A as was convenient...so don't expect this to compile...at all.
Diffstat (limited to 'crawl-ref/source/behold.cc')
-rw-r--r--crawl-ref/source/behold.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/crawl-ref/source/behold.cc b/crawl-ref/source/behold.cc
index b171ea66fa..6eb33d9981 100644
--- a/crawl-ref/source/behold.cc
+++ b/crawl-ref/source/behold.cc
@@ -34,7 +34,7 @@ void player::add_beholder(const monster* mon, bool axe)
if (you.can_see(mon))
{
mprf("%s's singing sounds muted, and has no effect on you.",
- mon->name(DESC_CAP_THE).c_str());
+ mon->name(DESC_THE).c_str());
}
else
{
@@ -45,7 +45,7 @@ void player::add_beholder(const monster* mon, bool axe)
{
if (you.can_see(mon))
{
- mprf("%s's is no longer quite as mesmerising!", mon->name(DESC_CAP_THE).c_str());
+ mprf("%s's is no longer quite as mesmerising!", mon->name(DESC_THE).c_str());
}
else
{
@@ -162,7 +162,7 @@ static void _removed_beholder_msg(const monster* mon)
if (you.can_see(mon))
{
mprf("%s's singing becomes strangely muted.",
- mon->name(DESC_CAP_THE).c_str());
+ mon->name(DESC_THE).c_str());
}
else
mpr("Something's singing becomes strangely muted.");
@@ -171,7 +171,7 @@ static void _removed_beholder_msg(const monster* mon)
{
if (you.can_see(mon))
{
- mprf("%s's is no longer quite as mesmerising!", mon->name(DESC_CAP_THE).c_str());
+ mprf("%s's is no longer quite as mesmerising!", mon->name(DESC_THE).c_str());
}
else
{
@@ -199,9 +199,9 @@ static void _removed_beholder_msg(const monster* mon)
}
if (_mermaid_beholder(mon))
- mprf("%s stops singing.", mon->name(DESC_CAP_THE).c_str());
+ mprf("%s stops singing.", mon->name(DESC_THE).c_str());
else
- mprf("%s is no longer quite as mesmerising!", mon->name(DESC_CAP_THE).c_str());
+ mprf("%s is no longer quite as mesmerising!", mon->name(DESC_THE).c_str());
return;
}