summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/branch.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2011-09-26 12:37:38 +0200
committerAdam Borowski <kilobyte@angband.pl>2011-09-26 12:37:38 +0200
commit1153542442c1d2e009dc74db27e7a13c675689bd (patch)
tree3494784d6eef91c0c1fe3d5c50c6d735e57ec341 /crawl-ref/source/branch.cc
parent2108932a94f1ae6ba71718b8e259105205573eea (diff)
downloadcrawl-ref-1153542442c1d2e009dc74db27e7a13c675689bd.tar.gz
crawl-ref-1153542442c1d2e009dc74db27e7a13c675689bd.zip
Disable the Hive, guarantee some very basic food supply.
Diffstat (limited to 'crawl-ref/source/branch.cc')
-rw-r--r--crawl-ref/source/branch.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/branch.cc b/crawl-ref/source/branch.cc
index 376d862b97..2c9b514275 100644
--- a/crawl-ref/source/branch.cc
+++ b/crawl-ref/source/branch.cc
@@ -221,5 +221,5 @@ branch_type get_branch_at(const coord_def& pos)
bool branch_is_unfinished(branch_type branch)
{
return branch == BRANCH_SPIDER_NEST || branch == BRANCH_FOREST
- || branch == BRANCH_DWARVEN_HALL;
+ || branch == BRANCH_DWARVEN_HALL || branch == BRANCH_HIVE;
}