summaryrefslogtreecommitdiffstats
path: root/crawl-ref
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-09 16:17:21 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-09 16:17:21 +0000
commit5443a68f96b0ba24b0de77573ad36a5633b39cd7 (patch)
treed6d106ad74b2fad6e8de34228239116b4dec7dfd /crawl-ref
parentdf28b4a38276bd56fdf1512fdebeb7c2707dfc18 (diff)
downloadcrawl-ref-5443a68f96b0ba24b0de77573ad36a5633b39cd7.tar.gz
crawl-ref-5443a68f96b0ba24b0de77573ad36a5633b39cd7.zip
Fix simulacrum creation message.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5657 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref')
-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);
}