1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-01-12 02:10:34 +00:00

2d3d:: no sidewalls if no qfi.fshape

This commit is contained in:
Zeno Rogue 2019-05-10 02:52:04 +02:00
parent b1663671bd
commit 1e64d4e220

View File

@ -3656,6 +3656,7 @@ bool placeSidewall(cell *c, int i, int sidepar, const transmatrix& V, color_t co
escherSidewall(c, sidepar, V, col); escherSidewall(c, sidepar, V, col);
return true; return true;
} }
if(!qfi.fshape) return true;
if(qfi.fshape == &shBigTriangle && pseudohept(c->move(i))) return false; if(qfi.fshape == &shBigTriangle && pseudohept(c->move(i))) return false;
if(qfi.fshape == &shTriheptaFloor && !pseudohept(c) && !pseudohept(c->move(i))) return false; if(qfi.fshape == &shTriheptaFloor && !pseudohept(c) && !pseudohept(c->move(i))) return false;