From 4c81c0cc5d062cedc1f74f48d52e760e62de4308 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Tue, 7 May 2024 23:56:29 +0200 Subject: [PATCH] fixed single wrong tile of the first land when safetying in landscape etc --- bigstuff.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bigstuff.cpp b/bigstuff.cpp index 42810dff..55f18674 100644 --- a/bigstuff.cpp +++ b/bigstuff.cpp @@ -1329,7 +1329,7 @@ EX void setLandEuclid(cell *c) { return; } #endif - setland(c, specialland); + if(!c->land) setland(c, specialland); if(ls::any_nowall()) { auto co = euc2_coordinates(c); int y = co.second;