fix event log spam (#3611)

Co-authored-by: deltanedas <@deltanedas:kde.org>
This commit is contained in:
deltanedas 2025-05-01 12:59:06 +01:00 committed by GitHub
parent d7b8b51569
commit 6e46247ea6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -113,7 +113,7 @@ public sealed class RampingStationEventSchedulerSystem : GameRuleSystem<RampingS
*/
// Begin DeltaV Additions
var averageTimeUntilNextEvent = -component.TimeKeyPoints[0].X;
var averageTimeUntilNextEvent = component.TimeKeyPoints[0].Y;
var timeUntilNextEventDeviation = _random.NextFloat(-1f, 1f) * component.TimeDeviation;
var roundTime = (float)_gameTicker.RoundDuration().TotalMinutes;
var absoluteTimePoint = 0f;