From d25b6d3be6ef346c5980852fc5c8ce94751a86b7 Mon Sep 17 00:00:00 2001 From: Tk420634 Date: Thu, 18 Jul 2024 11:12:05 -0500 Subject: [PATCH] Remove needless time of day transition logs --- code/controllers/subsystem/nightcycle.dm | 8 -------- 1 file changed, 8 deletions(-) diff --git a/code/controllers/subsystem/nightcycle.dm b/code/controllers/subsystem/nightcycle.dm index 07862ef42f..d0a31f48a1 100644 --- a/code/controllers/subsystem/nightcycle.dm +++ b/code/controllers/subsystem/nightcycle.dm @@ -102,11 +102,9 @@ SUBSYSTEM_DEF(nightcycle) switch (new_time) if (SUNRISE) - message_admins("Transitioning into dawn...") current_sun_color = sunrise_sun_color current_sun_power = sunrise_sun_power if (MORNING) - message_admins("Transitioning into midmorning...") current_sun_color = morning_sun_color current_sun_power = morning_sun_power for(var/obj/structure/lamp_post/lamp as anything in GLOB.lamppost) @@ -116,30 +114,24 @@ SUBSYSTEM_DEF(nightcycle) current_sun_color = latemorn_sun_color current_sun_power = latemorn_sun_power if (DAYTIME) - message_admins("Transitioning into midday...") current_sun_color = daytime_sun_color current_sun_power = daytime_sun_power if (AFTERNOON) - message_admins("Transitioning into midafternoon...") current_sun_color = afternoon_sun_color current_sun_power = afternoon_sun_power if (LATEAFTERNOON) - message_admins("Transitioning into midafternoon...") current_sun_color = lateafternoon_sun_color current_sun_power = lateafternoon_sun_power if (SUNSET) - message_admins("Transitioning into early sunset...") current_sun_color = sunset_sun_color current_sun_power = sunset_sun_power if (FULLSUNSET) - message_admins("Transitioning into full sunset (title drop)...") current_sun_color = fullsunset_sun_color current_sun_power = fullsunset_sun_power for(var/obj/structure/lamp_post/lamp as anything in GLOB.lamppost) lamp.icon_state = "[initial(lamp.icon_state)]-on" lamp.set_light_on(TRUE) if(NIGHTTIME) - message_admins("Transitioning into night...") current_sun_color = nighttime_sun_color current_sun_power = nighttime_sun_power else