If we have a leak, reset occupied value so that FindOccupiedClusters can be re-entered later for areas

This commit is contained in:
Jonathan 2022-01-24 14:41:37 -05:00
parent 11d2d51165
commit c9243d4fea
1 changed files with 3 additions and 0 deletions

View File

@ -498,6 +498,9 @@ bool FillOutside(node_t *node, const int hullnum)
exit(1); exit(1);
} }
// clear occupied state, so areas can be flooded in Q2
ClearOccupied_r(node);
return false; return false;
} }