diff options
author | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-05-26 12:35:28 +0800 |
---|---|---|
committer | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-05-26 12:35:28 +0800 |
commit | d24e54df28d92afebcd6d890e579340df84a010b (patch) | |
tree | 4d4065cc9870663e11e3aa136effd7dbd24ea7fb /features/hud | |
parent | 7d40a943f3148979f0572e17d2a4f6a7c49beeb7 (diff) | |
download | SoopyV2-d24e54df28d92afebcd6d890e579340df84a010b.tar.gz SoopyV2-d24e54df28d92afebcd6d890e579340df84a010b.tar.bz2 SoopyV2-d24e54df28d92afebcd6d890e579340df84a010b.zip |
+ fix gemstoneMoneyHud for some people
+ fix scan current pet from pets menu
Diffstat (limited to 'features/hud')
-rw-r--r-- | features/hud/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/features/hud/index.js b/features/hud/index.js index c6254d4..f375d41 100644 --- a/features/hud/index.js +++ b/features/hud/index.js @@ -458,7 +458,7 @@ class Hud extends Feature { if (Date.now() - this.lastSwappedPet > 1000) { inv[i].getLore().forEach(line => { - if (line.includes("Click to despawn.")) { + if (line.includes("Click to despawn!")) { this.petElement.setText("&6Pet&7> &7" + inv[i].getName().split("(")[0]) this.petText = "&6Pet&7> &7" + inv[i].getName().split("(")[0] } |