From 32dc7d69c64c54b6a79132a0b3d5ed758e0faa99 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Thu, 6 Dec 2018 10:42:54 +0100 Subject: [PATCH] crystal:: no more blocked Crossroads in 8-7-7 --- crystal.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crystal.cpp b/crystal.cpp index 9e7dc0d4..f6c4fd6e 100644 --- a/crystal.cpp +++ b/crystal.cpp @@ -935,7 +935,7 @@ void set_land(cell *c) { else if(specialland == laCrossroads) { eLand l1 = getCLand(gdiv(cv, 360)); eLand l2 = getCLand(gdiv(cv+59, 360)); - if(l1 != l2) setland(c, laBarrier); + if(l1 != l2 && hrand(100) < 75) setland(c, laBarrier); else setland(c, l1); }