Skip to content

Commit

Permalink
Merge pull request #36 from ARF-SS13/fenwork
Browse files Browse the repository at this point in the history
Remove needless time of day transition logs
  • Loading branch information
Tk420634 authored Jul 18, 2024
2 parents 3771794 + d25b6d3 commit 56b9b71
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions code/controllers/subsystem/nightcycle.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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
Expand Down

0 comments on commit 56b9b71

Please sign in to comment.