fixed the mirrors in FPP

This commit is contained in:
Zeno Rogue 2021-04-15 18:13:53 +02:00
parent 4eb780f237
commit 097bdb1687
1 changed files with 6 additions and 0 deletions

View File

@ -70,6 +70,12 @@ void compute_skyvertices(const vector<sky_item>& sky) {
for(const sky_item& si: sky) {
auto c = si.c;
if(c->land == laMirrorWall) continue;
bool inmir = false;
forCellEx(c1, c) if(c1->land == laMirrorWall) inmir = true;
if(inmir) continue;
for(int i=0; i<c->type; i++) {
if(1) {