summaryrefslogtreecommitdiffstats
path: root/crawl-ref
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-07-07 15:54:19 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-07-07 15:54:19 +0000
commit6a9d2c4e4557186178402684f6c443b18d4f1a82 (patch)
treec24d656bff423a90d04453ade32b74bab3cd9547 /crawl-ref
parent0c5c483d03ecff8bc11a174cddc7229a0ffe04e3 (diff)
downloadcrawl-ref-6a9d2c4e4557186178402684f6c443b18d4f1a82.tar.gz
crawl-ref-6a9d2c4e4557186178402684f6c443b18d4f1a82.zip
Disable Shoals for 0.4.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/branches/stone_soup-0.4@6445 c06c8d41-db1a-0410-9941-cceddc491573
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}
/* ***********************************************************************