Skip to content

Commit

Permalink
fix ash storms not doing damage
Browse files Browse the repository at this point in the history
  • Loading branch information
deltanedas committed Dec 21, 2024
1 parent 14cb4bc commit 6d9345a
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 6d9345a

Please sign in to comment.