From 6d9345a41bc36b91bcc5bf02fe6e11f836086409 Mon Sep 17 00:00:00 2001 From: deltanedas <@deltanedas:kde.org> Date: Sat, 21 Dec 2024 13:45:22 +0000 Subject: [PATCH] fix ash storms not doing damage --- Content.Shared/Weather/SharedWeatherSystem.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Content.Shared/Weather/SharedWeatherSystem.cs b/Content.Shared/Weather/SharedWeatherSystem.cs index 95c089fa10e..0c9bbf702b0 100644 --- a/Content.Shared/Weather/SharedWeatherSystem.cs +++ b/Content.Shared/Weather/SharedWeatherSystem.cs @@ -137,6 +137,10 @@ public override void Update(float frameTime) { SetState(uid, WeatherState.Starting, comp, weather, weatherProto); } + else // DeltaV: Set state to Running when it finishes the starting time + { + SetState(uid, WeatherState.Running, comp, weather, weatherProto); + } } // Run whatever code we need.