diff options
Diffstat (limited to 'features')
-rw-r--r-- | features/hud/index.js | 3 |
1 files changed, 1 insertions, 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 |