diff options
author | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-01-11 05:03:00 +0800 |
---|---|---|
committer | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-01-11 05:03:00 +0800 |
commit | 1ecfecc53f68a9ee371bf105eb8a656e0a98c5b3 (patch) | |
tree | 1c8436eda071169a5bb89d902bee091985edfa49 /features/dataLoader | |
parent | 5a018f398d2de5351778af35306f387eadcceb68 (diff) | |
download | SoopyV2-1ecfecc53f68a9ee371bf105eb8a656e0a98c5b3.tar.gz SoopyV2-1ecfecc53f68a9ee371bf105eb8a656e0a98c5b3.tar.bz2 SoopyV2-1ecfecc53f68a9ee371bf105eb8a656e0a98c5b3.zip |
+ Warning message when cannot connect to soopy server
+ Museum gui performance improvements
+ HUD api stat thingo
+ Settings for slayer features actually toggle things
+ Stat next to name loading time optimisations (should help if you are in a party)
Diffstat (limited to 'features/dataLoader')
-rw-r--r-- | features/dataLoader/index.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/features/dataLoader/index.js b/features/dataLoader/index.js index e24c34c..9389c03 100644 --- a/features/dataLoader/index.js +++ b/features/dataLoader/index.js @@ -22,6 +22,8 @@ class DataLoader extends Feature { this.api_loaded_event = this.createCustomEvent("apiLoad") + this.loadedApiDatas = {} + this.lastApiData = { "skyblock": undefined, "player": undefined, @@ -52,6 +54,12 @@ class DataLoader extends Feature { let key = this.FeatureManager.features["globalSettings"].class.apiKeySetting.getValue() if(!key) return + if(this.loadedApiDatas[type] !== undefined){ + if(Date.now()-this.loadedApiDatas[type] < 5000) return + } + + this.loadedApiDatas[type] = Date.now() + if(soopyServer){ }else{ |