From 9b1a34d4ecfcf433ca34924c5ad5ee01efcc03ee Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Sat, 14 Nov 2020 14:17:03 +0100 Subject: [PATCH] fixed freeze on binary tiling X R --- landgen.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/landgen.cpp b/landgen.cpp index 31170661..ca83fae0 100644 --- a/landgen.cpp +++ b/landgen.cpp @@ -2810,7 +2810,7 @@ EX void setdist(cell *c, int d, cell *from) { if(d >= BARLEV) { #if CAP_BT - if(bt::in() && WDIM == 3 && !c->land && !sn::in()) { + if(bt::in() && WDIM == 3 && !c->land && !sn::in() && !hybri) { ld z = vid.binary_width; cell *cseek = c; int step = 0;