1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-18 23:47:40 +00:00

expansion, ctrl+E cheat, fix with distance calculation

This commit is contained in:
Zeno Rogue
2017-04-04 11:13:15 +02:00
parent 0d7d2cf825
commit 645a64e8c9
15 changed files with 684 additions and 442 deletions

View File

@@ -348,9 +348,9 @@ bool pseudohept(cell *c) {
if(purehepta) {
if(sphere)
return
c->master == &dodecahedron[3] ||
c->master == &dodecahedron[5] ||
c->master == &dodecahedron[6];
c->master == getDodecahedron(3) ||
c->master == getDodecahedron(5) ||
c->master == getDodecahedron(6);
int z = zebra40(c);
return z == 5 || z == 8 || z == 15;
}