From 55776850ead3263aa8ea7f12fd26cf373c0b5c06 Mon Sep 17 00:00:00 2001 From: Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> Date: Fri, 19 Aug 2022 21:36:33 +0800 Subject: + fix mana bar not showing cus update + fix mining progress resetting due to item price data + add carpentary to hud stat --- features/globalSettings/index.js | 2 ++ 1 file changed, 2 insertions(+) (limited to 'features/globalSettings') diff --git a/features/globalSettings/index.js b/features/globalSettings/index.js index 04ac413..429cb23 100644 --- a/features/globalSettings/index.js +++ b/features/globalSettings/index.js @@ -431,6 +431,8 @@ class GlobalSettings extends Feature { updateItemLores() { if (!this.itemWorth.getValue() && !this.showChampion.getValue() && !this.showHecatomb.getValue()) return; + if (!Client.currentGui.get()) return + let items = [...Player.getInventory().getItems(), ...Player.getContainer().getItems()] items.forEach(i => { -- cgit