1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-08-30 01:07:57 +00:00

made bfs in 3D always know nearby cells even if gmatrix not known

This commit is contained in:
Zeno Rogue
2024-05-08 21:16:47 +02:00
parent 305d546ae1
commit 0b0ad4abe3
2 changed files with 2 additions and 2 deletions

View File

@@ -2585,7 +2585,7 @@ int celldistance_534(cell *c1, cell *c2) {
vector<cell*> s1 = {c1};
vector<cell*> s2 = {c2};
int best = 99999999;
int best = DISTANCE_UNKNOWN;
int d0 = 0;
auto go_nearer = [&] (vector<cell*>& v, int& d) {