summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/ng-init.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/ng-init.cc')
-rw-r--r--crawl-ref/source/ng-init.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/ng-init.cc b/crawl-ref/source/ng-init.cc
index d0a5541323..9ac8e60247 100644
--- a/crawl-ref/source/ng-init.cc
+++ b/crawl-ref/source/ng-init.cc
@@ -54,7 +54,7 @@ void initialise_branch_depths()
for (int branch = BRANCH_ECUMENICAL_TEMPLE; branch < NUM_BRANCHES; ++branch)
{
const Branch *b = &branches[branch];
- if (crawl_state.game_is_sprint() || branch_is_unfinished(b->id))
+ if (branch_is_unfinished(b->id))
startdepth[branch] = -1;
else
startdepth[branch] = random_range(b->mindepth, b->maxdepth);