From 7a5af8dc1cb484c91e86b228dee67c5eb0d95efa Mon Sep 17 00:00:00 2001 From: onezDerv Date: Sun, 29 Sep 2024 21:21:55 -0400 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;