From bc73319333659e5729282227991237ae46f618e1 Mon Sep 17 00:00:00 2001 From: lethosor Date: Sat, 15 Nov 2014 16:39:19 -0500 Subject: [PATCH] Make rain indicator LIGHTBLUE for better visibility --- plugins/dwarfmonitor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/dwarfmonitor.cpp b/plugins/dwarfmonitor.cpp index 95f3a0f1e..cb37df184 100644 --- a/plugins/dwarfmonitor.cpp +++ b/plugins/dwarfmonitor.cpp @@ -1730,7 +1730,7 @@ struct dwarf_monitor_hook : public df::viewscreen_dwarfmodest x = 1; y = gps->dimy - 1; if (World::ReadCurrentWeather() == weather_type::Rain) - OutputString(COLOR_BLUE, x, y, "Rain"); + OutputString(COLOR_LIGHTBLUE, x, y, "Rain"); else if (World::ReadCurrentWeather() == weather_type::Snow) OutputString(COLOR_WHITE, x, y, "Snow"); }