improve syncing

This commit is contained in:
biglyderv 2024-11-25 14:14:20 -05:00
parent 0ea8236567
commit 9353f7cbf0
2 changed files with 3 additions and 2 deletions

View file

@ -26,7 +26,7 @@ class Game extends GameBasic {
let that = this;
that.entities = [];
setInterval(function () { that.sync() }, 1000 / 20);
setInterval(function () { that.sync() }, 1000 / 5);
}
}