diff --git a/plugins/dwarfmonitor.cpp b/plugins/dwarfmonitor.cpp index 4d9b452ce..ce63bc096 100644 --- a/plugins/dwarfmonitor.cpp +++ b/plugins/dwarfmonitor.cpp @@ -1755,8 +1755,7 @@ struct dwarf_monitor_hook : public df::viewscreen_dwarfmodest x = 1; y = gps->dimy - 1; - bool clear = false, - rain = false, + bool rain = false, snow = false; if (current_weather) { @@ -1767,24 +1766,18 @@ struct dwarf_monitor_hook : public df::viewscreen_dwarfmodest { switch ((*current_weather)[i][j]) { - case weather_type::None: - clear = true; - break; case weather_type::Rain: rain = true; break; case weather_type::Snow: snow = true; break; + default: + break; } } } } - if (clear && (rain || snow)) - { - OutputString(COLOR_YELLOW, x, y, "Clear"); - ++x; - } if (rain) { OutputString(COLOR_LIGHTBLUE, x, y, "Rain");