removed a blank

develop
PatrikLundell 2020-11-13 20:28:22 +01:00
parent 6014a45235
commit d51b56c780
2 changed files with 2 additions and 1 deletions

@ -44,6 +44,7 @@ changelog.txt uses a syntax similar to RST, with a few special sequences:
- `search`: fixed an issue causing item counts on the trade screen to display inconsistently when searching
- `stockpiles`: fixed a crash when loading food stockpiles
- `stockpiles`: fixed an error when saving furniture stockpiles
- `embark-assistant`: Fixed issue causing incursion resource matching to skip the checks if those resources were provided only through incursions.
## Misc Improvements
- `createitem`: added support for plant growths (fruit, berries, leaves, etc.)

@ -73,7 +73,7 @@ namespace embark_assist {
bool surveyed = false;
bool survey_completed = false;
bool neighboring_clay = false; // These elements are updated after the survey by checking if there are any border MLTs in neighboring tiles that would would provide the resource
bool neighboring_sand = false; // if they actually provided an incursion. This allows the code to add these potential tiles to the ones checked.
bool neighboring_sand = false; // if they actually provided an incursion. This allows the code to add these potential tiles to the ones checked.
aquifer_sizes neighboring_aquifer = aquifer_sizes::NA;
aquifer_sizes aquifer = aquifer_sizes::NA;
uint16_t clay_count = 0;