File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
src/main/java/codes/biscuit/skyblockaddons/utils Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -526,8 +526,9 @@ public void updateWithItem(ItemStack itemStack) {
526
526
if (main .getUtils ().isInDungeon () && StringUtils .isBlank (displayName )) {
527
527
// Ignore Archer's ghost abilities cooldown
528
528
return ;
529
- } else if (LocationUtils .isOn (Island .KUUDRA ) && itemStack .getDisplayName ().contains ("You will be revived in" )) {
530
- // Ignore revive counter item in Kuudra
529
+ } else if (LocationUtils .isOn (Island .KUUDRA ) && (displayName .contains ("You will be revived in" )
530
+ || displayName .contains ("Purchasable revive is on cooldown!" ))) {
531
+ // Ignore revive counter and Purchase Revive cooldown items in Kuudra
531
532
return ;
532
533
}
533
534
} else if (ItemUtils .isQuiverArrow (itemStack )) {
You can’t perform that action at this time.
0 commit comments