From da31bab4199d17f46c5b4d72cb079d2d479f9f28 Mon Sep 17 00:00:00 2001 From: lethosor Date: Mon, 19 May 2014 16:33:17 -0400 Subject: [PATCH] Display embark label on all 5 map pages --- plugins/embark-tools.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/embark-tools.cpp b/plugins/embark-tools.cpp index 4d1a4afbe..0c2781d05 100644 --- a/plugins/embark-tools.cpp +++ b/plugins/embark-tools.cpp @@ -278,9 +278,9 @@ struct choose_start_site_hook : df::viewscreen_choose_start_sitest if (tool_enabled("anywhere")) { x = 20; y = dim.y - 2; - if (screen->page == 0) + if (screen->page >= 0 && screen->page <= 4) { - // Only display on main page (not site finder, notes, etc.) + // Only display on five map pages, not on site finder or notes OutputString(COLOR_WHITE, x, y, ": Embark!"); } }