diff options
author | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-07-10 14:24:53 +0800 |
---|---|---|
committer | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-07-10 14:24:53 +0800 |
commit | 0af5d1c1f7f7d033655623cad6a0ac113566c809 (patch) | |
tree | 99845c5cd3af196a8fbc1bfb328fb816775856f6 /features/dungeonMap/index.js | |
parent | cd40728731f045f6dc59e3700be2b54fdb6991b6 (diff) | |
download | SoopyV2-0af5d1c1f7f7d033655623cad6a0ac113566c809.tar.gz SoopyV2-0af5d1c1f7f7d033655623cad6a0ac113566c809.tar.bz2 SoopyV2-0af5d1c1f7f7d033655623cad6a0ac113566c809.zip |
+ fix green colors on map thingf buggy
Diffstat (limited to 'features/dungeonMap/index.js')
-rw-r--r-- | features/dungeonMap/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
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) |