1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-12-24 17:10:36 +00:00

fixed Hall of Mirrors

This commit is contained in:
Zeno Rogue 2019-11-24 00:46:08 +01:00
parent b53854fdcf
commit 40bbd25905

View File

@ -1713,7 +1713,7 @@ void celldrawer::bookkeeping() {
else {
playerV = V * ddspin(c, cwt.spin, 0);
if(cwt.mirrored) playerV = playerV * Mirror;
if(!confusingGeometry() || eqmatrix(V, current_display->which_copy, 1e-2))
if((!confusingGeometry() && !inmirrorcount) || eqmatrix(V, current_display->which_copy, 1e-2))
current_display->which_copy = V;
if(orig) cwtV = playerV;
}