summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/monplace.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/monplace.cc')
-rw-r--r--crawl-ref/source/monplace.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/monplace.cc b/crawl-ref/source/monplace.cc
index 2eb35162b0..3b0bf92364 100644
--- a/crawl-ref/source/monplace.cc
+++ b/crawl-ref/source/monplace.cc
@@ -261,7 +261,8 @@ void spawn_random_monsters()
// Place Abyss monsters. (Now happens regularly every 5 turns which might
// look a bit strange for a place as chaotic as the Abyss. Then again,
// the player is unlikely to meet all of them and notice this.)
- if (you.level_type == LEVEL_ABYSS)
+ if (you.level_type == LEVEL_ABYSS
+ && (you.char_direction != GDT_GAME_START || one_chance_in(10)))
{
mons_place(mgen_data(WANDERING_MONSTER));
viewwindow(true, false);