mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-11-18 03:04:48 +00:00
fixed the mirrors in FPP
This commit is contained in:
parent
4eb780f237
commit
097bdb1687
6
sky.cpp
6
sky.cpp
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user