From 5a7f789d8cfd02bcb383119fcff1c1ccf59d2334 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Tue, 6 Aug 2019 21:08:29 +0200 Subject: [PATCH] changed reptilecheat in Ice --- landgen.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/landgen.cpp b/landgen.cpp index 464e5b6c..b1d32ffd 100644 --- a/landgen.cpp +++ b/landgen.cpp @@ -824,9 +824,9 @@ void giantLandSwitch(cell *c, int d, cell *from) { break; case laIce: - if(d == 9 && !reptilecheat) { + if(d == 9) { if(randomPatternsMode) c->wall = RANDPAT ? waIcewall : waNone; - else if(hrand(100) < 5 && c->wall != waBarrier) { + else if(hrand(100) < 5 && c->wall != waBarrier && (WDIM == 3 || !reptilecheat)) { c->wall = waIcewall; for(int i=0; itype; i++) if(hrand(100) < 50) { cell *c2 = createMov(c, i);