From ca18cbbd2114c9c081c9a6a916992a16dedc0783 Mon Sep 17 00:00:00 2001 From: deltanedas <39013340+deltanedas@users.noreply.github.com> Date: Sat, 21 Dec 2024 13:51:06 +0000 Subject: [PATCH] fix ash storms not doing damage (#2497) Co-authored-by: deltanedas <@deltanedas:kde.org> --- 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 95c089fa10..0c9bbf702b 100644 --- a/Content.Shared/Weather/SharedWeatherSystem.cs +++ b/Content.Shared/Weather/SharedWeatherSystem.cs @@ -137,6 +137,10 @@ public abstract class SharedWeatherSystem : EntitySystem { 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.