summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/branch.h
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2011-10-26 15:39:40 +0200
committerAdam Borowski <kilobyte@angband.pl>2011-11-04 18:49:50 +0100
commitff3b896cb6e3770cd593b867405fde9a94bba00b (patch)
treed2a97f9cf030db60886b8c71c66c5aeef86bf8cc /crawl-ref/source/branch.h
parentc53ce012953407a81fb0701d83c62303b76028cd (diff)
downloadcrawl-ref-ff3b896cb6e3770cd593b867405fde9a94bba00b.tar.gz
crawl-ref-ff3b896cb6e3770cd593b867405fde9a94bba00b.zip
Renumber branch flags starting from 1.
No regard for save compat, it's already about to get broken.
Diffstat (limited to 'crawl-ref/source/branch.h')
-rw-r--r--crawl-ref/source/branch.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/branch.h b/crawl-ref/source/branch.h
index 8ff6fcdb7a..be82545eca 100644
--- a/crawl-ref/source/branch.h
+++ b/crawl-ref/source/branch.h
@@ -12,8 +12,8 @@ enum branch_flag_type
{
BFLAG_NONE = 0,
- BFLAG_ISLANDED = (1 << 4), // May have isolated zones with no stairs.
- BFLAG_NO_XLEV_TRAVEL = (1 << 5), // Can't cross-level travel to or from it.
+ BFLAG_ISLANDED = (1 << 1), // May have isolated zones with no stairs.
+ BFLAG_NO_XLEV_TRAVEL = (1 << 2), // Can't cross-level travel to or from it.
};
struct Branch