From 242254cdf5f10ae806f22b624e830f51aca1e054 Mon Sep 17 00:00:00 2001 From: dshaligram Date: Wed, 28 Mar 2007 06:39:32 +0000 Subject: Fixed bogus Abyss escape messages (milestones). git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@1112 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/effects.cc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'crawl-ref/source/effects.cc') 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) -- cgit v1.2.3-54-g00ecf