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:
6
game.cpp
6
game.cpp
@@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user