From 51cb47c97c3ddba588c73c61c679500fe8f4277d Mon Sep 17 00:00:00 2001 From: Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> Date: Fri, 13 May 2022 20:31:00 +0800 Subject: maby fix soulflow (probs not) --- features/hud/index.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/features/hud/index.js b/features/hud/index.js index 44ee38a..8609a72 100644 --- a/features/hud/index.js +++ b/features/hud/index.js @@ -490,12 +490,11 @@ class Hud extends Feature { this.petElement.setText(this.petText) } - if (Date.now() - this.lastUpdatedStatData > 5 * 60000 && this.soulflowEnabledSetting.getValue()) { + if (Date.now() - this.lastUpdatedStatData > 5 * 60000) { this.FeatureManager.features["dataLoader"].class.loadApiData("skyblock", false) this.lastUpdatedStatData = Date.now() - return } let soulflowCount = 0 -- cgit