From 0f517f38f84ddd7a99ed50ffe776e2da20394885 Mon Sep 17 00:00:00 2001 From: Myk Taylor Date: Thu, 22 Oct 2020 22:01:45 -0700 Subject: [PATCH] don't conflict with automaterial plugin shift buildingplan text down so we don't overwrite each other --- plugins/buildingplan.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/plugins/buildingplan.cpp b/plugins/buildingplan.cpp index 58c911dcf..910e5ebe4 100644 --- a/plugins/buildingplan.cpp +++ b/plugins/buildingplan.cpp @@ -641,6 +641,12 @@ struct buildingplan_place_hook : public df::viewscreen_dwarfmodest int y = 23; + if (ui_build_selector->building_type == df::building_type::Construction) + { + // try not to conflict with the automaterial plugin UI + y = 34; + } + if (show_help) { OutputString(COLOR_BROWN, x, y, "Note: ");