Run some timers a little faster

This commit is contained in:
Loporrit
2025-05-14 10:13:49 +00:00
parent 4dd34039f4
commit e2e59bd396
4 changed files with 20 additions and 14 deletions

View File

@@ -482,7 +482,7 @@ public class DalamudUtilService : IHostedService, IMediatorSubscriber
return;
}
bool isNormalFrameworkUpdate = DateTime.UtcNow < _delayedFrameworkUpdateCheck.AddSeconds(1);
bool isNormalFrameworkUpdate = DateTime.UtcNow < _delayedFrameworkUpdateCheck.AddMilliseconds(200);
_performanceCollector.LogPerformance(this, $"FrameworkOnUpdateInternal+{(isNormalFrameworkUpdate ? "Regular" : "Delayed")}", () =>
{