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:
@@ -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);
|
||||
|
Reference in New Issue
Block a user