summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/effects.cc
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-03-28 06:39:32 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-03-28 06:39:32 +0000
commit242254cdf5f10ae806f22b624e830f51aca1e054 (patch)
tree31968a420048fbbed63995b0e6a4f1abf0f0d277 /crawl-ref/source/effects.cc
parentac60e5f5489963b2f2710f971c6d13471286239a (diff)
downloadcrawl-ref-242254cdf5f10ae806f22b624e830f51aca1e054.tar.gz
crawl-ref-242254cdf5f10ae806f22b624e830f51aca1e054.zip
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
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)