mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-12-24 17:10:36 +00:00
crystal:: no more blocked Crossroads in 8-7-7
This commit is contained in:
parent
d8bf550d37
commit
32dc7d69c6
@ -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);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user