1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-12-19 23:30:25 +00:00

disabled mirrors in penrose and sol

This commit is contained in:
Zeno Rogue 2019-07-28 11:40:01 +02:00
parent eea22ebf75
commit d60de0306b

View File

@ -1061,6 +1061,7 @@ namespace whirlpool {
namespace mirror { namespace mirror {
bool build(cell *c) { bool build(cell *c) {
if(penrose || sol) return false;
#if CAP_GP #if CAP_GP
if(GOLDBERG) { if(GOLDBERG) {
if(c == c->master->c7) { if(c == c->master->c7) {
@ -1186,6 +1187,8 @@ namespace mirror {
void createMirrors(cellwalker cw, int cpid) { void createMirrors(cellwalker cw, int cpid) {
if(penrose || sol) return;
#if CAP_ARCM #if CAP_ARCM
if(archimedean) { if(archimedean) {
create_archimedean(cw, cpid, true); create_archimedean(cw, cpid, true);