fix ash storms not doing damage (#2497)

Co-authored-by: deltanedas <@deltanedas:kde.org>
This commit is contained in:
deltanedas 2024-12-21 13:51:06 +00:00 committed by GitHub
parent 14cb4bc00d
commit ca18cbbd21
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 0 deletions

View File

@ -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.