selecting horocyclic lands in standard geometry works

This commit is contained in:
Zeno Rogue 2019-03-10 19:15:48 +01:00
parent ea1b29533c
commit 0a0627afc5
2 changed files with 2 additions and 2 deletions

View File

@ -949,7 +949,7 @@ void setLandEuclid(cell *c) {
bool quickfind(eLand l) {
if(l == cheatdest) return true;
if(l == specialland && weirdhyperbolic) return true;
if(l == specialland && (weirdhyperbolic || specialland != laIce)) return true;
#if CAP_TOUR
if(tour::on && tour::quickfind(l)) return true;
#endif

View File

@ -760,7 +760,7 @@ void showEuclideanMenu() {
}
void runGeometryExperiments() {
if(!geometry)
if(!geometry && specialland == laIce)
specialland = getLandForList(cwt.at);
pushScreen(showEuclideanMenu);
}