summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/files.cc
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-10-08 17:47:17 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-10-08 17:47:17 +0000
commitd4828ced1edd21e0fc259c354c7bc45766e5f35d (patch)
treef22e6a76f496cfe789f30df5c585d070fb057fcc /crawl-ref/source/files.cc
parent4801b64ec8a108d6728780f64118e557fcfd7185 (diff)
downloadcrawl-ref-d4828ced1edd21e0fc259c354c7bc45766e5f35d.tar.gz
crawl-ref-d4828ced1edd21e0fc259c354c7bc45766e5f35d.zip
Re-enable ghosts in Labyrinths.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@2381 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/files.cc')
-rw-r--r--crawl-ref/source/files.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/crawl-ref/source/files.cc b/crawl-ref/source/files.cc
index 1c1af9c8d0..b7d7ff2b67 100644
--- a/crawl-ref/source/files.cc
+++ b/crawl-ref/source/files.cc
@@ -908,10 +908,9 @@ bool load( dungeon_feature_type stair_taken, int load_mode,
just_created_level = true;
if ((you.your_level > 1 || you.level_type != LEVEL_DUNGEON)
- && one_chance_in(3)
- && you.level_type != LEVEL_LABYRINTH)
+ && one_chance_in(3))
{
- load_ghost(); // no ghosts in Labyrinth
+ load_ghost();
}
env.turns_on_level = 0;
}