summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/files.cc
diff options
context:
space:
mode:
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;
}