summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-10-30 16:03:45 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-10-30 16:03:45 +0000
commit550a721e95d98c560a2190d752ff4169292e5dfe (patch)
tree3e4b06284dd8c9910f73a8210f08b27af46481df
parentd1b37515d1cd7bfaf63c659fef0379d4ac8a372b (diff)
downloadcrawl-ref-550a721e95d98c560a2190d752ff4169292e5dfe.tar.gz
crawl-ref-550a721e95d98c560a2190d752ff4169292e5dfe.zip
Trunk->0.3 merge (2688): Tukima's Dance fix for weapons of distortion.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/branches/stone_soup-0.3@2689 c06c8d41-db1a-0410-9941-cceddc491573
-rw-r--r--crawl-ref/source/spl-cast.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/spl-cast.cc b/crawl-ref/source/spl-cast.cc
index 51e8d185f7..ffe9a1883a 100644
--- a/crawl-ref/source/spl-cast.cc
+++ b/crawl-ref/source/spl-cast.cc
@@ -1946,7 +1946,7 @@ static bool send_abyss(const char *cause)
if (you.level_type != LEVEL_ABYSS)
{
mpr("You are cast into the Abyss!");
- banished(DNGN_ENTER_ABYSS, cause? cause : "");
+ you.banish(cause? cause : "");
return (true);
}
else