1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-18 11:19:59 +00:00

removed reference to gTorus

This commit is contained in:
Zeno Rogue 2019-11-30 15:03:53 +01:00
parent 411dffb601
commit 4a9fe001ee

View File

@ -1142,7 +1142,7 @@ EX namespace mirror {
#endif
bool noMirrorOn(cell *c) {
return c->monst || (!shmup::on && isPlayerOn(c)) || (geometry != gFieldQuotient && geometry != gTorus && c->cpdist > gamerange());
return c->monst || (!shmup::on && isPlayerOn(c)) || (!bounded && c->cpdist > gamerange());
}
bool cellMirrorable(cell *c) {