1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-11-14 12:47:10 +00:00

Elemental Planes work in weirdgeometries with simplified walls. Improved validity reports.

This commit is contained in:
Zeno Rogue
2018-04-13 13:42:22 +02:00
parent e494eb0020
commit 68a54c0695
2 changed files with 15 additions and 10 deletions

View File

@@ -1043,6 +1043,9 @@ void buildBigStuff(cell *c, cell *from) {
buildBarrierNowall(c, getNewLand(c->land));
}
else if(weirdhyperbolic && specialland == laElementalWall && hrand(I10000) < 1000 && gp_wall_test())
buildBarrierNowall(c, getNewLand(c->land));
else if(weirdhyperbolic) ; // non-Nowall barriers not implemented yet in weird hyperbolic
else if(c->land == laCrossroads2 && !nonbitrunc)