summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/effects.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/effects.cc')
-rw-r--r--crawl-ref/source/effects.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/crawl-ref/source/effects.cc b/crawl-ref/source/effects.cc
index cc31223a32..85f6fec71c 100644
--- a/crawl-ref/source/effects.cc
+++ b/crawl-ref/source/effects.cc
@@ -138,9 +138,11 @@ void banished(int gate_type, const std::string &who)
{
#ifdef DGL_MILESTONES
if (gate_type == DNGN_ENTER_ABYSS)
- mark_milestone("abyss.enter", who_banished(who));
+ mark_milestone("abyss.enter",
+ "is cast into the Abyss!" + who_banished(who));
else if (gate_type == DNGN_EXIT_ABYSS)
- mark_milestone("abyss.exit", who_banished(who));
+ mark_milestone("abyss.exit",
+ "escaped from the Abyss!" + who_banished(who));
#endif
if (gate_type == DNGN_ENTER_ABYSS)