summaryrefslogtreecommitdiffstats
path: root/crawl-ref
diff options
context:
space:
mode:
authorzelgadis <zelgadis@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-12 10:59:26 +0000
committerzelgadis <zelgadis@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-12 10:59:26 +0000
commit8898bc387f2425e63623cf68f6c80f93344a6bc3 (patch)
treea0484fcccb46369626c834d608d973e8ef0d082a /crawl-ref
parentaf82384c240a924e921b96d81b8dd295aa1f2a80 (diff)
downloadcrawl-ref-8898bc387f2425e63623cf68f6c80f93344a6bc3.tar.gz
crawl-ref-8898bc387f2425e63623cf68f6c80f93344a6bc3.zip
Oops, fix bad messages when Yred grants an undead servant.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@8427 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref')
-rw-r--r--crawl-ref/source/religion.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/religion.cc b/crawl-ref/source/religion.cc
index 3221708ea3..a6228d61d3 100644
--- a/crawl-ref/source/religion.cc
+++ b/crawl-ref/source/religion.cc
@@ -1952,7 +1952,7 @@ static void _do_god_gift(bool prayed_for)
int threshold = (you.piety - piety_breakpoint(2)) * 20 / 9;
_yred_random_servants(threshold);
- _delayed_monster_done("grants you @an@ undead servant@s@!",
+ _delayed_monster_done(" grants you @an@ undead servant@s@!",
"", _delayed_gift_callback);
}
break;
@@ -7152,8 +7152,8 @@ static void _place_delayed_monsters()
}
else
{
- msg = replace_all(msg, "@a@", "");
- msg = replace_all(msg, "@an@", "");
+ msg = replace_all(msg, " @a@", "");
+ msg = replace_all(msg, " @an@", "");
}
if (placed > 1)