From 610d6ee1b33390aaf4be2a347aadb85b541e8bf5 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Fri, 15 Nov 2019 11:17:10 +0100 Subject: [PATCH] fixed the Haunted Woods unlock in OSM. --- bigstuff.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bigstuff.cpp b/bigstuff.cpp index 3bc37fc3..b49bca35 100644 --- a/bigstuff.cpp +++ b/bigstuff.cpp @@ -770,7 +770,7 @@ EX void buildEquidistant(cell *c) { if(c->landparam > 30 && b == laOcean && !generatingEquidistant && !hybri && hrand(10) < 5 && chance) buildAnotherEquidistant(c); - if(c->landparam > HAUNTED_RADIUS+5 && b == laGraveyard && !generatingEquidistant && !hybri && hrand(100) < (PURE?25:5) && items[itBone] >= 10 && chance) + if(c->landparam > HAUNTED_RADIUS+5 && b == laGraveyard && !generatingEquidistant && !hybri && hrand(100) < (PURE?25:5) && items[itBone] >= U10 && chance) buildAnotherEquidistant(c); }