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
1 changed files with 1 additions and 0 deletions

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);
return true;
}
if(!qfi.fshape) return true;
if(qfi.fshape == &shBigTriangle && pseudohept(c->move(i))) return false;
if(qfi.fshape == &shTriheptaFloor && !pseudohept(c) && !pseudohept(c->move(i))) return false;