From 77b6d9eedbe9942d2eeae91ae5457a94bc7ff719 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Sat, 24 Mar 2018 15:22:34 +0100 Subject: [PATCH] disable Windy chasms if reptilecheat is on --- landgen.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/landgen.cpp b/landgen.cpp index f5a0070a..9248724a 100644 --- a/landgen.cpp +++ b/landgen.cpp @@ -1047,7 +1047,7 @@ void giantLandSwitch(cell *c, int d, cell *from) { c->wall = waChasm; } else if(!euclid && zebra3(c) == 0) c->wall = waFan; - else if(pseudohept(c) && hrand(2000) < 150) + else if(pseudohept(c) && hrand(2000) < 150 && !reptilecheat) c->wall = waChasm; else if(c->type == 6 && buildPrizeMirror(c, 1000)) {}