diff options
Diffstat (limited to 'features/dataLoader/index.js')
-rw-r--r-- | features/dataLoader/index.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/features/dataLoader/index.js b/features/dataLoader/index.js index 19bdbba..7bf2bf9 100644 --- a/features/dataLoader/index.js +++ b/features/dataLoader/index.js @@ -67,13 +67,17 @@ class DataLoader extends Feature { }else{ if(type === "skyblock"){ try{ + // console.log("loading") let data = JSON.parse(FileLib.getUrlContent("https://api.hypixel.net/skyblock/profiles?key=" + key + "&uuid=" + Player.getUUID().replace(/-/g, ""))) if(!data.success) return this.api_loaded_event.trigger(data, "skyblock", false, true) this.lastApiData.skyblock_raw = data - }catch(e){} + }catch(e){ + console.log("Hypixel api request failed:") + console.log(JSON.stringify(e, undefined, 2)) + } } } } |