Merge pull request #14700 from Heroman3003/weather-fixes-changes

Various weather and firework related cleanup and adjustments
This commit is contained in:
Casey
2023-03-18 16:55:40 -04:00
committed by CHOMPStation2
parent b259cb47ef
commit 02ee5608f1
9 changed files with 221 additions and 30 deletions

View File

@@ -28,6 +28,11 @@
if(WH.current_weather.observed_message)
to_chat(usr, WH.current_weather.observed_message)
// Describe the current weather.
if(WH.imminent_weather)
var/datum/weather/coming_weather = WH.allowed_weather_types[WH.imminent_weather]
to_chat(usr, coming_weather.imminent_transition_message)
// If we can see the sky, we'll see things like sun position, phase of the moon, etc.
if(!WH.current_weather.sky_visible)
to_chat(usr, "You can't see the sky clearly due to the [WH.current_weather.name].")