Skip to content

Commit

Permalink
fix ash storms not doing damage (#2497)
Browse files Browse the repository at this point in the history
Co-authored-by: deltanedas <@deltanedas:kde.org>
  • Loading branch information
deltanedas authored Dec 21, 2024
1 parent 14cb4bc commit ca18cbb
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Content.Shared/Weather/SharedWeatherSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit ca18cbb

Please sign in to comment.