Introduces particle weather, converts rain and ash storms to it (#96297)

Co-authored-by: Lucy <lucy@absolucy.moe>
This commit is contained in:
SmArtKar
2026-06-06 19:33:45 -04:00
committed by GitHub
co-authored by Lucy
parent 194ccf566f
commit 67bbc096a8
23 changed files with 418 additions and 89 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ ADMIN_VERB(run_weather, R_ADMIN|R_FUN, "Run Weather", "Triggers specific weather
var/list/weather_choices = list()
if(!length(weather_choices))
for(var/datum/weather/weather_type as anything in subtypesof(/datum/weather))
for(var/datum/weather/weather_type as anything in valid_subtypesof(/datum/weather))
weather_choices[initial(weather_type.type)] = weather_type
var/datum/weather/weather_choice = tgui_input_list(user, "Choose a weather to run", "Weather", weather_choices)