diff options
-rw-r--r-- | features/dungeonMap/index.js | 16 | ||||
-rw-r--r-- | metadata.json | 4 |
2 files changed, 2 insertions, 18 deletions
diff --git a/features/dungeonMap/index.js b/features/dungeonMap/index.js index 91c145b..9871a78 100644 --- a/features/dungeonMap/index.js +++ b/features/dungeonMap/index.js @@ -183,7 +183,6 @@ class DungeonMap extends Feature { let lastXY = "" let registerActionBar = this.registerCustom("actionbar", (curr, max) => { - return let loc = this.getRoomXYWorld() if (lastXY !== loc.join(",")) { @@ -198,21 +197,6 @@ class DungeonMap extends Feature { } }) registerActionBar.trigger.setCriteria('&7${curr}/${max} Secrets').setParameter('contains'); - - this.registerCommand("setrooms", (curr, max) => { - let loc = this.getRoomXYWorld() - - if (lastXY !== loc.join(",")) { - lastXY = loc.join(",") - return - } - if (curr === max) curr = "&a" + curr - if (this.roomDataStuff.get(loc.join(",")) !== curr + " " + max) { - this.roomDataStuff.set(loc.join(","), curr + " " + max) - - socketConnection.sendDungeonData2(this.people, [loc.join(","), curr + " " + max]) - } - }) } updateDungeonMapData2(data) { diff --git a/metadata.json b/metadata.json index 2e51845..38aee50 100644 --- a/metadata.json +++ b/metadata.json @@ -5,8 +5,8 @@ "entry": "index.js", "description": "SoopyV2", "name": "SoopyV2", - "version": "2.1.122", - "versionId": 249, + "version": "2.1.123", + "versionId": 250, "requires": [ "soopyApis", "soopyAddonsData", |