summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/attitude-change.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/attitude-change.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/attitude-change.cc')
-rw-r--r--crawl-ref/source/attitude-change.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/crawl-ref/source/attitude-change.cc b/crawl-ref/source/attitude-change.cc
index 2000652b78..cc2856a52b 100644
--- a/crawl-ref/source/attitude-change.cc
+++ b/crawl-ref/source/attitude-change.cc
@@ -57,7 +57,7 @@ void good_god_follower_attitude_change(monster* mons)
|| is_evil_item(*wpn))
&& coinflip()) // 50% chance of conversion failing
{
- msg::stream << mons->name(DESC_CAP_THE)
+ msg::stream << mons->name(DESC_THE)
<< " glares at your weapon."
<< std::endl;
good_god_holy_fail_attitude_change(mons);
@@ -100,7 +100,7 @@ void beogh_follower_convert(monster* mons, bool orc_hit)
&& get_weapon_brand(*you.weapon()) == SPWPN_ORC_SLAYING
&& coinflip()) // 50% chance of conversion failing
{
- msg::stream << mons->name(DESC_CAP_THE)
+ msg::stream << mons->name(DESC_THE)
<< " flinches from your weapon."
<< std::endl;
return;
@@ -458,12 +458,12 @@ static void _jiyva_convert_slime(monster* slime)
mprf(MSGCH_GOD, "%s stares at you suspiciously for a moment, "
"then relaxes.",
- slime->name(DESC_CAP_THE).c_str());
+ slime->name(DESC_THE).c_str());
}
else
{
mprf(MSGCH_GOD, "%s trembles before you.",
- slime->name(DESC_CAP_THE).c_str());
+ slime->name(DESC_THE).c_str());
}
}
@@ -475,7 +475,7 @@ static void _jiyva_convert_slime(monster* slime)
slime->add_ench(ENCH_EAT_ITEMS);
mprf(MSGCH_MONSTER_ENCHANT, "%s looks hungrier.",
- slime->name(DESC_CAP_THE).c_str());
+ slime->name(DESC_THE).c_str());
}
mons_make_god_gift(slime, GOD_JIYVA);