1
0
mirror of https://github.com/C9Glax/tranga.git synced 2025-04-29 03:32:27 +02:00

Reduced CheckJobs timer to 100ms

This commit is contained in:
glax 2023-09-02 14:45:02 +02:00
parent 4cce2e04cb
commit 37cf47bc17

@ -65,7 +65,7 @@ public partial class Tranga : GlobalBase
while (keepRunning)
{
jobBoss.CheckJobs();
Thread.Sleep(1000);
Thread.Sleep(100);
}
});
t.Start();