From 0af5d1c1f7f7d033655623cad6a0ac113566c809 Mon Sep 17 00:00:00 2001 From: Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> Date: Sun, 10 Jul 2022 14:24:53 +0800 Subject: + fix green colors on map thingf buggy --- features/dungeonMap/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'features/dungeonMap/index.js') diff --git a/features/dungeonMap/index.js b/features/dungeonMap/index.js index b1f5eaa..b9195ed 100644 --- a/features/dungeonMap/index.js +++ b/features/dungeonMap/index.js @@ -189,7 +189,7 @@ class DungeonMap extends Feature { lastXY = loc.join(",") return } - if (curr === max) curr = "§a" + curr + if (curr === max) curr = "&a" + curr if (this.roomDataStuff.get(loc.join(",")) !== curr + " " + max) { this.roomDataStuff.set(loc.join(","), curr + " " + max) -- cgit