1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-16 06:37:38 +00:00

fixed automatic pseudohept; Warped walls do generate in arcm

This commit is contained in:
Zeno Rogue
2018-08-21 16:58:09 +02:00
parent 06c57adf4a
commit dc1d3e4ee1
3 changed files with 6 additions and 6 deletions

View File

@@ -739,7 +739,7 @@ bool buildBarrierNowall(cell *c, eLand l2, int forced_dir) {
}
bool warpv = warped_version(c->land, l2);
if(warpv && !pseudohept(c)) return false;
if(warpv && !archimedean && !pseudohept(c)) return false;
int ds[8];
for(int i=0; i<c->type; i++) ds[i] = i;