1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2026-02-06 18:00:17 +00:00

fixed Orb of the Warp destroyed while refactoring

This commit is contained in:
Zeno Rogue
2019-04-17 00:42:51 +02:00
parent 5b87088ade
commit f507b7cf55
8 changed files with 18 additions and 15 deletions

View File

@@ -1219,7 +1219,7 @@ void buildBigStuff(cell *c, cell *from) {
}
}
else if(good_for_wall(c) && isWarped(c->land) && hrand(10000) < 3000 && c->land &&
else if(good_for_wall(c) && isWarpedType(c->land) && hrand(10000) < 3000 && c->land &&
buildBarrierNowall(c, eLand(c->land ^ laWarpSea ^ laWarpCoast))) ;
else if(good_for_wall(c) && c->land == laCrossroads4 && hrand(10000) < 7000 && c->land && !c->master->alt && !tactic::on && !racing::on &&