1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-20 00:17:39 +00:00

fixed some potential issues with arb

This commit is contained in:
Zeno Rogue
2020-08-02 13:01:55 +02:00
parent 6c96349714
commit 554567e0cf
3 changed files with 4 additions and 3 deletions

View File

@@ -1376,7 +1376,7 @@ EX int wallchance(cell *c, bool deepOcean) {
/** should we generate the horocycles in the current geometry? */
EX bool horo_ok() {
if(INVERSE) return false;
return hyperbolic && !bt::in() && !arcm::in() && !kite::in() && !experimental && !hybri;
return hyperbolic && !bt::in() && !arcm::in() && !kite::in() && !experimental && !hybri && !arb::in();
}
EX bool gp_wall_test() {