1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-21 12:43:18 +00:00

crystal:: no more blocked Crossroads in 8-7-7

This commit is contained in:
Zeno Rogue 2018-12-06 10:42:54 +01:00
parent d8bf550d37
commit 32dc7d69c6

View File

@ -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);
}