Core/Spells: Don't modify item charges in all slots on a single item spell cast

This commit is contained in:
Shauren
2024-02-26 14:39:16 +01:00
parent 91939f343e
commit 9ecb93f34d

View File

@@ -5349,8 +5349,8 @@ void Spell::TakeCastItem()
int32 charges = m_CastItem->GetSpellCharges(itemEffect->LegacySlotIndex);
// item has charges left
if (charges)
// item has charges left for this slot
if (charges && itemEffect->SpellID == int32(m_spellInfo->Id))
{
(charges > 0) ? --charges : ++charges; // abs(charges) less at 1 after use
if (proto->GetMaxStackSize() == 1)