From 3ea1430db7bbd50089284fda997404b5ab927009 Mon Sep 17 00:00:00 2001 From: biglyderv Date: Mon, 25 Nov 2024 14:14:20 -0500 Subject: [PATCH] increase map to 9x --- common/game_basic.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/game_basic.js b/common/game_basic.js index 93b59d2..935d949 100644 --- a/common/game_basic.js +++ b/common/game_basic.js @@ -12,7 +12,7 @@ class GameBasic { this.player = player; this.entities = entities; - this.width = this.height = 2500; + this.width = this.height = 7500; } main() { let { entities } = this;