summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mon-util.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-06 21:05:35 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-06 21:05:35 +0000
commit7f97bf0e03db69e9f393d4b683705bcfdc3c7c86 (patch)
treef891733aafa5643976f15a034284af6cfabbee07 /crawl-ref/source/mon-util.cc
parent09a1c70aa415d3f72526fd3d075b68002f180b86 (diff)
downloadcrawl-ref-7f97bf0e03db69e9f393d4b683705bcfdc3c7c86.tar.gz
crawl-ref-7f97bf0e03db69e9f393d4b683705bcfdc3c7c86.zip
Add still more minor cosmetic fixes.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@8280 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/mon-util.cc')
-rw-r--r--crawl-ref/source/mon-util.cc6
1 files changed, 2 insertions, 4 deletions
diff --git a/crawl-ref/source/mon-util.cc b/crawl-ref/source/mon-util.cc
index 9588e310e1..65485c4b76 100644
--- a/crawl-ref/source/mon-util.cc
+++ b/crawl-ref/source/mon-util.cc
@@ -8212,7 +8212,7 @@ std::string do_mon_str_replacements(const std::string &in_msg,
_replace_god_name(god, true, false));
msg = replace_all(msg, "@God_is@", _replace_god_name(god, true, true));
- // No verb needed,
+ // No verb needed.
msg = replace_all(msg, "@foe_god@",
_replace_god_name(god, false, false));
msg = replace_all(msg, "@foe_god@",
@@ -8267,16 +8267,14 @@ std::string do_mon_str_replacements(const std::string &in_msg,
msg = replace_all(msg, "@says@", "buggily says");
}
else
- {
msg = replace_all(msg, "@says@", sound_list[s_type]);
- }
// The proper possessive for a word ending in an "s" is to
// put an apostrophe after the "s": "Chris" -> "Chris'",
// not "Chris" -> "Chris's". Stupid English language...
msg = replace_all(msg, "s's", "s'");
- return msg;
+ return (msg);
}
static mon_body_shape _get_ghost_shape(const monsters *mon)