From eda08be74aa4e942c997d63472a8b0045fb527d5 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Sat, 14 Oct 2017 19:16:04 +0200 Subject: [PATCH] fixed Bulldash fallthrough to Rose --- landgen.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/landgen.cpp b/landgen.cpp index af418ebe..e21a3b2e 100644 --- a/landgen.cpp +++ b/landgen.cpp @@ -958,7 +958,8 @@ void giantLandSwitch(cell *c, int d, cell *from) { } else { int i = zebra40(c); - if(i >= 40 && hrand(100) < 50) + if(c->wall); + else if(i >= 40 && hrand(100) < 50) c->wall = hrand(2) ? waCharged : waGrounded; else if(ishept(c) && hrand(100) < 20) c->wall = waSandstone;