diff --git a/code/game/machinery/mining_weather_monitor.dm b/code/game/machinery/mining_weather_monitor.dm deleted file mode 100644 index d05d8820751a..000000000000 --- a/code/game/machinery/mining_weather_monitor.dm +++ /dev/null @@ -1,26 +0,0 @@ -/// Wall mounted mining weather tracker -/obj/machinery/mining_weather_monitor - name = "barometric monitor" - desc = "A machine monitoring atmospheric data from mining environments. Provides warnings about incoming weather fronts." - icon = 'icons/obj/miningradio.dmi' - icon_state = "wallmount" - luminosity = 1 - light_power = 1 - light_range = 1.6 - -/obj/machinery/mining_weather_monitor/Initialize(mapload, ndir, nbuild) - . = ..() - AddComponent( \ - /datum/component/weather_announcer, \ - state_normal = "wallgreen", \ - state_warning = "wallyellow", \ - state_danger = "wallred", \ - ) - -/obj/machinery/mining_weather_monitor/update_overlays() - . = ..() - if((machine_stat & BROKEN) || !powered()) - return - . += emissive_appearance(icon, "emissive", src) - -MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/mining_weather_monitor, 28) diff --git a/icons/obj/miningradio.dmi b/icons/obj/miningradio.dmi index e3d10f3b6d62..08b6052e91a0 100644 Binary files a/icons/obj/miningradio.dmi and b/icons/obj/miningradio.dmi differ diff --git a/shiptest.dme b/shiptest.dme index 2579534c3c52..fd0106fafce3 100644 --- a/shiptest.dme +++ b/shiptest.dme @@ -875,7 +875,6 @@ #include "code\game\machinery\mass_driver.dm" #include "code\game\machinery\medical_kiosk.dm" #include "code\game\machinery\medipen_refiller.dm" -#include "code\game\machinery\mining_weather_monitor.dm" #include "code\game\machinery\navbeacon.dm" #include "code\game\machinery\newscaster.dm" #include "code\game\machinery\PDApainter.dm"