diff --git a/docs/Plugins.rst b/docs/Plugins.rst index da1231184..030aa9de1 100644 --- a/docs/Plugins.rst +++ b/docs/Plugins.rst @@ -536,7 +536,7 @@ This plugin provides embark site selection help. It has to be run with the extended (and correct(?)) resource information for the embark rectangle as well as normally undisplayed sites in the current embark region. It also has a site selection tool with more options than DF's vanilla search tool. For detailed -help invoke the in game info screen. Requires 42 lines to display properly. +help invoke the in game info screen. Requires 46 lines to display properly. .. _embark-tools: diff --git a/plugins/embark-assistant/finder_ui.cpp b/plugins/embark-assistant/finder_ui.cpp index 2b33d8fe1..80380ca60 100644 --- a/plugins/embark-assistant/finder_ui.cpp +++ b/plugins/embark-assistant/finder_ui.cpp @@ -146,7 +146,7 @@ namespace embark_assist { void save_profile() { color_ostream_proxy out(Core::getInstance().getConsole()); - + FILE* outfile = fopen(profile_file_name, "w"); fields i = first_fields; @@ -607,7 +607,7 @@ namespace embark_assist { break; case embark_assist::defs::magma_ranges::Cavern_1: - element->list.push_back({ "Third Cavern", static_cast(k) }); + element->list.push_back({ "First Cavern", static_cast(k) }); break; case embark_assist::defs::magma_ranges::Volcano: @@ -1287,7 +1287,7 @@ namespace embark_assist { Screen::clear(); Screen::drawBorder("Embark Assistant Site Finder"); - + embark_assist::screen::paintString(lr_pen, 1, 1, DFHack::Screen::getKeyDisplay(df::interface_key::CURSOR_LEFT).c_str()); embark_assist::screen::paintString(white_pen, 2, 1, "/"); embark_assist::screen::paintString(lr_pen, 3, 1, DFHack::Screen::getKeyDisplay(df::interface_key::CURSOR_RIGHT).c_str());