1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-11-27 14:37:16 +00:00

increased the limit in bounded_celldistance to 14400

This commit is contained in:
Zeno Rogue 2021-07-12 10:02:26 +02:00
parent 48bccdbd70
commit 2d962c324d

View File

@ -1084,7 +1084,7 @@ EX cell *random_in_distance(cell *c, int d) {
} }
EX int bounded_celldistance(cell *c1, cell *c2) { EX int bounded_celldistance(cell *c1, cell *c2) {
int limit = 6000; int limit = 14400;
#if CAP_SOLV #if CAP_SOLV
if(geometry == gArnoldCat) { if(geometry == gArnoldCat) {
c2 = asonov::get_at(asonov::get_coord(c2->master) - asonov::get_coord(c1->master))->c7; c2 = asonov::get_at(asonov::get_coord(c2->master) - asonov::get_coord(c1->master))->c7;