summaryrefslogtreecommitdiffstats
path: root/crawl-ref
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-10-30 16:02:16 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-10-30 16:02:16 +0000
commitfe08837866eb97b0313099c42ce6605e8a5b04ae (patch)
treed90b228d4c926c44c07db47602c159d6af082a38 /crawl-ref
parentb8335256b98b82000a87334aee7572f255892f90 (diff)
downloadcrawl-ref-fe08837866eb97b0313099c42ce6605e8a5b04ae.tar.gz
crawl-ref-fe08837866eb97b0313099c42ce6605e8a5b04ae.zip
[1822636] Fixed bad handling of banishment by distortion weapon animated by Tukima's Dance.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@2688 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref')
-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 58004d3087..88a9debc42 100644
--- a/crawl-ref/source/spl-cast.cc
+++ b/crawl-ref/source/spl-cast.cc
@@ -1970,7 +1970,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