summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spl-mis.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/spl-mis.cc')
-rw-r--r--crawl-ref/source/spl-mis.cc9
1 files changed, 5 insertions, 4 deletions
diff --git a/crawl-ref/source/spl-mis.cc b/crawl-ref/source/spl-mis.cc
index ddbdde0782..26656e619a 100644
--- a/crawl-ref/source/spl-mis.cc
+++ b/crawl-ref/source/spl-mis.cc
@@ -901,22 +901,23 @@ void MiscastEffect::_conjuration(int severity)
}
static void _your_hands_glow(actor* target, std::string& you_msg,
- std::string& mon_msg_seen, bool pluralize)
+ std::string& mon_msg_seen, bool pluralise)
{
you_msg = "Your @hands@ ";
mon_msg_seen = "@The_monster@'s @hands@ ";
// No message for invisible monsters.
- if (pluralize)
+ if (pluralise)
{
- you_msg += "glow";
- mon_msg_seen += "glow";
+ you_msg += "glow";
+ mon_msg_seen += "glow";
}
else
{
you_msg += "glows";
mon_msg_seen += "glows";
}
+
you_msg += " momentarily.";
mon_msg_seen += " momentarily.";
}