|
@@ -201,13 +201,12 @@ class World
|
|
|
|
|
|
if (!explored[neighbour]) {
|
|
|
open.push(neighbour);
|
|
|
+ explored[neighbour] = true;
|
|
|
previous[neighbour] = current;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
// Current tile is now processed
|
|
|
- explored[current] = true;
|
|
|
-
|
|
|
discovered.push_back(current);
|
|
|
|
|
|
// Stop if target found
|
|
@@ -274,13 +273,12 @@ class World
|
|
|
|
|
|
if (!explored[neighbour]) {
|
|
|
open.push(neighbour);
|
|
|
+ explored[neighbour] = true;
|
|
|
previous[neighbour] = current;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
// Current tile is now processed
|
|
|
- explored[current] = true;
|
|
|
-
|
|
|
discovered.push_back(current);
|
|
|
|
|
|
// Stop if target found
|