summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/travel.cc
diff options
context:
space:
mode:
authorDarshan Shaligram <dshaligram@users.sourceforge.net>2010-01-16 21:21:34 +0530
committerDarshan Shaligram <dshaligram@users.sourceforge.net>2010-01-16 21:23:28 +0530
commitfc861cd85fb2044058363096b391f1c21ec8e660 (patch)
tree45e09abedcb7b56afea7e88eee1d0dec41f74f09 /crawl-ref/source/travel.cc
parentd70fef927f87c743c1deb13bc285f06d3cc7dc6e (diff)
downloadcrawl-ref-fc861cd85fb2044058363096b391f1c21ec8e660.tar.gz
crawl-ref-fc861cd85fb2044058363096b391f1c21ec8e660.zip
Re-enable Swamp, randomly disable one of the Swamp, Snake Pit, or Shoals instead of flipping between Swamp and Shoals only (rob, dpeg).
Diffstat (limited to 'crawl-ref/source/travel.cc')
-rw-r--r--crawl-ref/source/travel.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/crawl-ref/source/travel.cc b/crawl-ref/source/travel.cc
index 0d2561a44b..8cc72ae6c3 100644
--- a/crawl-ref/source/travel.cc
+++ b/crawl-ref/source/travel.cc
@@ -2008,7 +2008,9 @@ static int _prompt_travel_branch(int prompt_flags, bool* to_entrance)
std::string msg;
if (target.startdepth == -1
- && (i == BRANCH_SWAMP || i == BRANCH_SHOALS ))
+ && (i == BRANCH_SWAMP
+ || i == BRANCH_SHOALS
+ || i == BRANCH_SNAKE_PIT))
{
msg += "Branch not generated this game. ";
}