From d51b56c780ecf4bb3bbeb171ec8294ee67216e6a Mon Sep 17 00:00:00 2001 From: PatrikLundell Date: Fri, 13 Nov 2020 20:28:22 +0100 Subject: [PATCH] removed a blank --- docs/changelog.txt | 1 + plugins/embark-assistant/defs.h | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/changelog.txt b/docs/changelog.txt index faec636dd..e907c2d75 100644 --- a/docs/changelog.txt +++ b/docs/changelog.txt @@ -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.) diff --git a/plugins/embark-assistant/defs.h b/plugins/embark-assistant/defs.h index caecc2d49..f571010a1 100644 --- a/plugins/embark-assistant/defs.h +++ b/plugins/embark-assistant/defs.h @@ -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;