summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mon-util.cc
diff options
context:
space:
mode:
authorzelgadis <zelgadis@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-11 22:34:38 +0000
committerzelgadis <zelgadis@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-11 22:34:38 +0000
commitf200b503f68b2eb90fd9a5677c79e093df07544c (patch)
tree229653f477cafaec0ef3e76a6ad91688a0ab87c5 /crawl-ref/source/mon-util.cc
parent7f995fc2629e658794e9dad338f7e540ed49769c (diff)
downloadcrawl-ref-f200b503f68b2eb90fd9a5677c79e093df07544c.tar.gz
crawl-ref-f200b503f68b2eb90fd9a5677c79e093df07544c.zip
In all cases of a monster suddenly coming into view use the phrase
"appears out of thin air!" git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5736 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/mon-util.cc')
-rw-r--r--crawl-ref/source/mon-util.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/mon-util.cc b/crawl-ref/source/mon-util.cc
index 9a50f05463..1a8d813618 100644
--- a/crawl-ref/source/mon-util.cc
+++ b/crawl-ref/source/mon-util.cc
@@ -4973,7 +4973,8 @@ void monsters::remove_enchantment_effect(const mon_enchant &me, bool quiet)
&& !has_ench( ENCH_SUBMERGED ))
{
if (!quiet)
- mprf("%s appears!", name(DESC_CAP_A, true).c_str() );
+ mprf("%s appears from thin air!",
+ name(DESC_CAP_A, true).c_str() );
seen_monster(this);
}