From 605b377d048f339dce6cd4bd1ac40125e45a9364 Mon Sep 17 00:00:00 2001 From: biglyderv Date: Fri, 3 Jan 2025 15:05:51 -0500 Subject: [PATCH] maybe this will reduce lag --- game.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/game.js b/game.js index 2159ded..087042c 100644 --- a/game.js +++ b/game.js @@ -98,8 +98,8 @@ class Game extends GameBasic { onScreen += 4; - this.width = (this.width * 0.99) + (Math.sqrt(onScreen) * 16); - this.height = (this.height * 0.99) + (Math.sqrt(onScreen) * 16); + this.width = (this.width * 0.99) + (Math.sqrt(onScreen) * 32); + this.height = (this.height * 0.99) + (Math.sqrt(onScreen) * 32); let { entities } = this; let entList = [];