summaryrefslogtreecommitdiffstats
path: root/crawl-ref
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref')
-rw-r--r--crawl-ref/source/delay.cc2
-rw-r--r--crawl-ref/source/mon-util.cc3
2 files changed, 3 insertions, 2 deletions
diff --git a/crawl-ref/source/delay.cc b/crawl-ref/source/delay.cc
index 35a19bdd62..abbada9668 100644
--- a/crawl-ref/source/delay.cc
+++ b/crawl-ref/source/delay.cc
@@ -1656,7 +1656,7 @@ inline static void _monster_warning(activity_interrupt_type ai,
if (mon->type == MONS_AIR_ELEMENTAL)
text += " forms itself from the air.";
else
- text += " appears from thin air.";
+ text += " appears from thin air!";
}
else if (at.context == "surfaces")
text += " surfaces.";
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);
}