1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-18 07:27:40 +00:00

fixed glitches in Warp+Mirror

This commit is contained in:
Zeno Rogue
2017-11-06 23:11:40 +01:00
parent 42b1e36cbc
commit 483e335db8
6 changed files with 55 additions and 12 deletions

View File

@@ -350,6 +350,10 @@ bool inmirror(eLand l) {
return l == laMirrored || l == laMirrorWall2 || l == laMirrored2;
}
bool inmirrororwall(eLand l) {
return l == laMirrored || l == laMirrorWall2 || l == laMirrored2 || l == laMirrorWall;
}
bool inmirror(cell *c) {
return inmirror(c->land);
}