Fixes presumed typo in if statement

develop
Josh Cooper 2022-06-05 13:04:16 -07:00 committed by Myk
parent f146cced95
commit 0eb9eee773
1 changed files with 2 additions and 1 deletions

@ -475,7 +475,8 @@ namespace embark_assist {
return; // We're at the world edge, so no incursions from the outside.
}
if (!&survey_results->at(fetch_x).at(fetch_y).surveyed) {
if (!survey_results->at(fetch_x).at(fetch_y).surveyed) {
// todo: this has never been executed before /*std::cerr << hello, is anybody out there*/
*failed_match = true;
return;
}