1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-30 21:42:59 +00:00

fixed a potential crash when calling fieldval in some geometries

This commit is contained in:
Zeno Rogue
2020-09-15 19:20:49 +02:00
parent 2e47adef1c
commit 0e20afe918
2 changed files with 2 additions and 2 deletions

View File

@@ -1330,7 +1330,7 @@ EX vector<int> reverse_directions(heptagon *c, int dir) {
}
EX bool standard_tiling() {
return !arcm::in() && !kite::in() && !bt::in() && !arb::in();
return !arcm::in() && !kite::in() && !bt::in() && !arb::in() && !nonisotropic && !hybri;
}
EX int valence() {