fixed Crossroads II

This commit is contained in:
Zeno Rogue 2021-04-25 11:30:26 +02:00
parent acfacd498f
commit 5f2c39a599
1 changed files with 4 additions and 2 deletions

View File

@ -1552,15 +1552,17 @@ EX void build_walls(cell *c, cell *from) {
buildBarrierNowall(c, getNewLand(c->land));
}
if(c->land == laCrossroads2 && BITRUNCATED)
if(c->land == laCrossroads2 && BITRUNCATED) {
buildCrossroads2(c);
return;
}
else if(good_for_wall(c) && isWarpedType(c->land) && hrand(10000) < 3000 && c->land &&
buildBarrierNowall(c, eLand(c->land ^ laWarpSea ^ laWarpCoast))) { }
else if(ls::single()) return;
if(geometry == gNormal && celldist(c) < 3 && !GOLDBERG) {
else if(geometry == gNormal && celldist(c) < 3 && !GOLDBERG) {
if(top_land && c == cwt.at->master->move(3)->c7) {
buildBarrierStrong(c, 6, true, top_land);
}