summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/branch.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2013-07-10 22:19:19 +0200
committerAdam Borowski <kilobyte@angband.pl>2013-07-10 22:21:20 +0200
commitf5a913ea86cab32ab64769f952f49d5c176d48c8 (patch)
tree4961d17bdf6374dd4a997f5adc877cc3267c9550 /crawl-ref/source/branch.cc
parent9e2e7ff7df1451659b0088445b0bfae8ad588af0 (diff)
downloadcrawl-ref-f5a913ea86cab32ab64769f952f49d5c176d48c8.tar.gz
crawl-ref-f5a913ea86cab32ab64769f952f49d5c176d48c8.zip
Remove the Dwarven Hall.
It's easy to re-add it if we'd have a better idea for it after all.
Diffstat (limited to 'crawl-ref/source/branch.cc')
-rw-r--r--crawl-ref/source/branch.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/branch.cc b/crawl-ref/source/branch.cc
index ec32607448..0780186f12 100644
--- a/crawl-ref/source/branch.cc
+++ b/crawl-ref/source/branch.cc
@@ -78,10 +78,10 @@ branch_type get_branch_at(const coord_def& pos)
bool branch_is_unfinished(branch_type branch)
{
#if TAG_MAJOR_VERSION == 34
- if (branch == BRANCH_UNUSED)
+ if (branch == BRANCH_UNUSED || branch == BRANCH_DWARVEN_HALL)
return true;
#endif
- return branch == BRANCH_DWARVEN_HALL;
+ return false;
}
branch_type parent_branch(branch_type branch)