summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/spells3.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/crawl-ref/source/spells3.cc b/crawl-ref/source/spells3.cc
index de6abf84b5..71bb89a09b 100644
--- a/crawl-ref/source/spells3.cc
+++ b/crawl-ref/source/spells3.cc
@@ -1051,8 +1051,9 @@ bool cast_simulacrum(int pow, bool god_gift)
if (count > 0)
{
- mprf("%s icy figure form%s before you!",
- count > 1 ? "Some" : "An", count > 1 ? "s" : "");
+ mprf("%s icy figure%s form%s before you!",
+ count > 1 ? "Some" : "An", count > 1 ? "s" : "",
+ count > 1 ? "" : "s");
return (true);
}