aboutsummaryrefslogtreecommitdiff
path: root/features/bestiary
diff options
context:
space:
mode:
authorSoopyboo32 <49228220+Soopyboo32@users.noreply.github.com>2022-05-26 22:21:17 +0800
committerSoopyboo32 <49228220+Soopyboo32@users.noreply.github.com>2022-05-26 22:21:17 +0800
commit6dee22fcfe3e1c57045f7b8b07b197dbca121a83 (patch)
tree15166c8e437cd3e9a9fe6b17564c74bb3fba4331 /features/bestiary
parenta0ae59e33748047377b5ae65df675759a10bff18 (diff)
downloadSoopyV2-6dee22fcfe3e1c57045f7b8b07b197dbca121a83.tar.gz
SoopyV2-6dee22fcfe3e1c57045f7b8b07b197dbca121a83.tar.bz2
SoopyV2-6dee22fcfe3e1c57045f7b8b07b197dbca121a83.zip
+ enable links from soopymc.my.to to be shown in patcher image preview
Diffstat (limited to 'features/bestiary')
-rw-r--r--features/bestiary/index.js8
1 files changed, 0 insertions, 8 deletions
diff --git a/features/bestiary/index.js b/features/bestiary/index.js
index 3888ffb..de7d679 100644
--- a/features/bestiary/index.js
+++ b/features/bestiary/index.js
@@ -13,22 +13,14 @@ class Waypoints extends Feature {
}
onEnable() {
- this.initVariables()
-
this.bestiaryData = JSON.parse(FileLib.read("soopyAddonsData", "bestiaryData.json") || "{}")
this.bestiaryChanged = false
}
- initVariables() {
-
- }
-
onDisable() {
if (this.bestiaryChanged) {
FileLib.write("soopyAddonsData", "bestiaryData.json", JSON.stringify(this.bestiaryData))
}
-
- this.initVariables()
}
}