1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-09-01 02: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

@@ -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;
}