Merge branch 'v28'

This commit is contained in:
evanpelle
2026-01-01 14:25:45 -08:00
38 changed files with 140 additions and 365 deletions
+8
View File
@@ -94,6 +94,14 @@ export class GameManager {
return totalClients;
}
desyncCount(): number {
let totalDesyncs = 0;
this.games.forEach((game: GameServer) => {
totalDesyncs += game.desyncCount;
});
return totalDesyncs;
}
tick() {
const active = new Map<GameID, GameServer>();
for (const [id, game] of this.games) {