fix: change ticks so it syncs playtime each 2 minutes

This commit is contained in:
Zamitto
2025-05-22 13:08:24 -03:00
parent ab7f29099d
commit f9d5cfce73

View File

@@ -28,7 +28,7 @@ interface GameExecutables {
[key: string]: ExecutableInfo[];
}
const TICKS_TO_UPDATE_API = 120;
const TICKS_TO_UPDATE_API = 80;
let currentTick = 1;
const isWindowsPlatform = process.platform === "win32";