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

fixed Elemental Planes in ls single

This commit is contained in:
Zeno Rogue
2021-04-23 20:13:10 +02:00
parent 12e864912b
commit 5bd56eea10
2 changed files with 9 additions and 1 deletions

View File

@@ -1486,8 +1486,16 @@ EX void build_walls(cell *c, cell *from) {
build_barrier_good(c, specialland);
return;
}
if(specialland == laElementalWall && hrand(I10000) < 4000) {
build_barrier_good(c);
return;
}
}
}
else if(ctof(c) && ls::single() && specialland == laElementalWall && hrand(I10000) < 4000) {
buildBarrierNowall(c, getNewLand(c->land));
}
if(c->land == laCrossroads2 && BITRUNCATED)
buildCrossroads2(c);