From 1ecfecc53f68a9ee371bf105eb8a656e0a98c5b3 Mon Sep 17 00:00:00 2001 From: Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> Date: Tue, 11 Jan 2022 05:03:00 +0800 Subject: + 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) --- featureClass/featureManager.js | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'featureClass') diff --git a/featureClass/featureManager.js b/featureClass/featureManager.js index 6a9df4c..70c2cc6 100644 --- a/featureClass/featureManager.js +++ b/featureClass/featureManager.js @@ -69,6 +69,13 @@ class FeatureManager { this.featureSettingsData = {} new Thread(()=>{ + + try{ + FileLib.getUrlContent("http://soopymc.my.to/api/soopyv2/ping") + }catch(e){ + ChatLib.chat(this.messagePrefix + "&cError: Could not connect to Soopy's server. This may cause issues with features breaking but will (hopefully) be back soon.") + } + this.loadFeatureMetas() this.loadFeatureSettings() -- cgit