1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-07-05 19:43:17 +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

@ -368,7 +368,7 @@ EX void bfs() {
c2->wall = waSea;
if(c2 && signed(c2->cpdist) > d+1) {
if(WDIM == 3 && !gmatrix.count(c2)) {
if(WDIM == 3 && (d > 2 && !gmatrix.count(c2))) {
if(!first7) first7 = qb;
continue;
}

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) {