diff --git a/src/structures/SkyBlock/SkyblockMember.js b/src/structures/SkyBlock/SkyblockMember.js index 90c8c5c5..0305a80d 100644 --- a/src/structures/SkyBlock/SkyblockMember.js +++ b/src/structures/SkyBlock/SkyblockMember.js @@ -244,6 +244,9 @@ class SkyblockMember { for (const pet of data.m.pets_data.pets) { if (!(pet.type in highestRarity) || Constants.petScore[pet.tier] > highestRarity[pet.type]) { highestRarity[pet.type] = Constants.petScore[pet.tier]; + if ('PET_ITEM_TIER_BOOST' === pet.heldItem && 'MYTHIC' !== pet.tier) { + highestRarity[pet.type] += 1; + } } }