diff options
author | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-10-04 21:23:48 +0800 |
---|---|---|
committer | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-10-04 21:23:48 +0800 |
commit | 2d463dc118b0d73605906ae0c2e4419bf39e8571 (patch) | |
tree | da97464dadad112db7975c35fa931b4bd5ee9be6 /src/features/hud/index.js | |
parent | 3a8cc7cc26ac3b48734b167d7ea2a6fef66cd513 (diff) | |
download | SoopyV2-2d463dc118b0d73605906ae0c2e4419bf39e8571.tar.gz SoopyV2-2d463dc118b0d73605906ae0c2e4419bf39e8571.tar.bz2 SoopyV2-2d463dc118b0d73605906ae0c2e4419bf39e8571.zip |
+ fix game freeze on first dungeon of the day
+ (potential) fix memory leak when doing lots of /ct reload
+ add seperate setting for powder info on hud to rest of powder features
Diffstat (limited to 'src/features/hud/index.js')
-rw-r--r-- | src/features/hud/index.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/features/hud/index.js b/src/features/hud/index.js index bd211e6..81f9285 100644 --- a/src/features/hud/index.js +++ b/src/features/hud/index.js @@ -311,12 +311,12 @@ class Hud extends Feature { }) this.registerSoopy("apiLoad", this.apiLoad) - if (this.FeatureManager.features["dataLoader"].class.lastApiData.skyblock) { + if (this.FeatureManager.features["dataLoader"] && this.FeatureManager.features["dataLoader"].class.lastApiData.skyblock) { this.apiLoad(this.FeatureManager.features["dataLoader"].class.lastApiData.skyblock, "skyblock", true, true) this.lastSwappedPet = Date.now() } - if (this.FeatureManager.features["dataLoader"].class.lastApiData.skyblock_raw) { + if (this.FeatureManager.features["dataLoader"] && this.FeatureManager.features["dataLoader"].class.lastApiData.skyblock_raw) { this.apiLoad(this.FeatureManager.features["dataLoader"].class.lastApiData.skyblock_raw, "skyblock", false, true) } |