From 6a1119f3d988d475c68844195d8d6c5b04b157dc Mon Sep 17 00:00:00 2001 From: dolorous Date: Thu, 3 Sep 2009 22:01:48 +0000 Subject: Add minor cosmetic fixes. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@10617 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/spl-mis.cc | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'crawl-ref/source/spl-mis.cc') 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."; } -- cgit v1.2.3-54-g00ecf