summaryrefslogtreecommitdiffstats
path: root/crawl-ref
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref')
-rw-r--r--crawl-ref/source/newgame.cc4
-rw-r--r--crawl-ref/source/version.h2
2 files changed, 4 insertions, 2 deletions
diff --git a/crawl-ref/source/newgame.cc b/crawl-ref/source/newgame.cc
index 294439d6d5..da04c61468 100644
--- a/crawl-ref/source/newgame.cc
+++ b/crawl-ref/source/newgame.cc
@@ -731,7 +731,8 @@ static void _initialise_branch_depths()
branches[BRANCH_LAIR].startdepth = random_range(8, 13);
branches[BRANCH_HIVE].startdepth = random_range(11, 16);
branches[BRANCH_SLIME_PITS].startdepth = random_range(8, 10);
- if ( coinflip() )
+
+ if (true)
{
branches[BRANCH_SWAMP].startdepth = random_range(2, 7);
branches[BRANCH_SHOALS].startdepth = -1;
@@ -741,6 +742,7 @@ static void _initialise_branch_depths()
branches[BRANCH_SWAMP].startdepth = -1;
branches[BRANCH_SHOALS].startdepth = random_range(2, 7);
}
+
branches[BRANCH_SNAKE_PIT].startdepth = random_range(3, 8);
branches[BRANCH_VAULTS].startdepth = random_range(14, 19);
branches[BRANCH_CRYPT].startdepth = random_range(2, 4);
diff --git a/crawl-ref/source/version.h b/crawl-ref/source/version.h
index c34cc1eb8d..0ddccc970e 100644
--- a/crawl-ref/source/version.h
+++ b/crawl-ref/source/version.h
@@ -38,7 +38,7 @@
#define CRAWL "Dungeon Crawl Stone Soup"
#define VER_NUM "0.4"
-#define VER_QUAL "-svn"
+#define VER_QUAL ""
// last updated 07august2001 {mv}
/* ***********************************************************************