From db38e0a271bb9d1618babd709bb62ae144e36ac2 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Thu, 30 May 2019 17:46:56 +0200 Subject: [PATCH] dual:: narrower Crossroads IV --- bigstuff.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bigstuff.cpp b/bigstuff.cpp index ca901355..efd4c2d9 100644 --- a/bigstuff.cpp +++ b/bigstuff.cpp @@ -890,7 +890,7 @@ eLand switchable(eLand nearland, eLand farland, int c) { return nearland; } else if(specialland == laCrossroads4) { - if(hrand(15) == 0) + if((dual::state && nearland == laCrossroads4) || hrand(15) == 0) return getNewLand(nearland); return nearland; }