summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mon-util.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/mon-util.cc')
-rw-r--r--crawl-ref/source/mon-util.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/mon-util.cc b/crawl-ref/source/mon-util.cc
index 5050bcb30b..9d746d852d 100644
--- a/crawl-ref/source/mon-util.cc
+++ b/crawl-ref/source/mon-util.cc
@@ -7139,7 +7139,7 @@ static std::string _get_species_insult(const std::string type)
static std::string _pluralise_player_genus()
{
- std::string sp = species_name(you.species, 1, true, false, true);
+ std::string sp = species_name(you.species, 1, true, false);
if (player_genus(GENPC_ELVEN, you.species)
|| player_genus(GENPC_DWARVEN, you.species))
{
@@ -7208,7 +7208,7 @@ std::string do_mon_str_replacements(const std::string &in_msg,
msg = replace_all(msg, "@player_species@",
species_name(you.species, 1).c_str());
msg = replace_all(msg, "@player_genus@",
- species_name(you.species, 1, true, false, true).c_str());
+ species_name(you.species, 1, true, false).c_str());
msg = replace_all(msg, "@player_genus_plural@",
_pluralise_player_genus().c_str());