Hack change the gpose timer to 2 seconds

This commit is contained in:
Loporrit
2025-07-03 08:30:41 +00:00
parent bb03885e2d
commit fe0835adf8

View File

@@ -120,7 +120,7 @@ public sealed class GPoseLobbyDistributionService : IHostedService, IDisposable
{
_logger.LogError(ex, "Error during Pose Data Distribution");
}
await Task.Delay(TimeSpan.FromSeconds(10), token).ConfigureAwait(false);
await Task.Delay(TimeSpan.FromSeconds(2), token).ConfigureAwait(false);
}
}