1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-01-20 06:03:01 +00:00

heptagon S3>4 in quotient

This commit is contained in:
Zeno Rogue 2020-11-01 19:57:58 +01:00
parent 96d28d173a
commit 342ac0805f

View File

@ -279,8 +279,9 @@ heptagon *hrmap_standard::create_step(heptagon *h, int d) {
else else
buildHeptagon(h, d, transition(h->s, d)); buildHeptagon(h, d, transition(h->s, d));
} }
else if(S3 > 4) { else if(S3 > 4 && quotient) {
/* wrong */ /* 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; h->move(d) = h;
// buildHeptagon(h, d, transition(h->s, d)); // buildHeptagon(h, d, transition(h->s, d));
} }