heptagon S3>4 in quotient

This commit is contained in:
Zeno Rogue 2020-11-01 19:57:58 +01:00
parent 96d28d173a
commit 342ac0805f
1 changed files with 3 additions and 2 deletions

View File

@ -279,8 +279,9 @@ heptagon *hrmap_standard::create_step(heptagon *h, int d) {
else
buildHeptagon(h, d, transition(h->s, d));
}
else if(S3 > 4) {
/* wrong */
else if(S3 > 4 && quotient) {
/* this branch may be used for some >4-valent quotient spaces outside of standard HyperRogue */
/* this is wrong, but we don't care in quotient */
h->move(d) = h;
// buildHeptagon(h, d, transition(h->s, d));
}