summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/branch.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2012-08-19 19:59:56 +0200
committerAdam Borowski <kilobyte@angband.pl>2012-08-19 20:03:17 +0200
commited9563133047e307b2700fa565ddd297372f9fa5 (patch)
treeeb4ccb96bf4db9db273d65f4a80e3295d1ffc7cb /crawl-ref/source/branch.cc
parentc5ec0f40796ef09463c124d3645e7b718833923b (diff)
downloadcrawl-ref-ed9563133047e307b2700fa565ddd297372f9fa5.tar.gz
crawl-ref-ed9563133047e307b2700fa565ddd297372f9fa5.zip
Bump save compat, in order to recover from monster_spells.
The problematic spells happen to be the same that add a massive number of enchantments and alter save structure, adding save compat for those would require a lot of work and be risky. Thus, it's easier to rewind, and then re-apply parts that we do want to keep.
Diffstat (limited to 'crawl-ref/source/branch.cc')
-rw-r--r--crawl-ref/source/branch.cc6
1 files changed, 1 insertions, 5 deletions
diff --git a/crawl-ref/source/branch.cc b/crawl-ref/source/branch.cc
index 0b515c84f0..7b917b18aa 100644
--- a/crawl-ref/source/branch.cc
+++ b/crawl-ref/source/branch.cc
@@ -80,9 +80,5 @@ branch_type get_branch_at(const coord_def& pos)
bool branch_is_unfinished(branch_type branch)
{
- return branch == BRANCH_FOREST || branch == BRANCH_DWARVEN_HALL
-#if TAG_MAJOR_VERSION == 33
- || branch == BRANCH_HIVE
-#endif
- ;
+ return branch == BRANCH_FOREST || branch == BRANCH_DWARVEN_HALL;
}