mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-26 03:42:37 +01:00
Core/Auras: Fixed incorrect cherry-pick merge conflict resolution - fixes procs never triggering
Closes #24172
This commit is contained in:
@@ -1729,7 +1729,7 @@ uint32 Aura::GetProcEffectMask(AuraApplication* aurApp, ProcEventInfo& eventInfo
|
||||
return 0;
|
||||
|
||||
// At least one effect has to pass checks to proc aura
|
||||
uint32 procEffectMask = 0;
|
||||
uint32 procEffectMask = aurApp->GetEffectMask();
|
||||
for (uint32 i = 0; i < MAX_SPELL_EFFECTS; ++i)
|
||||
if (procEffectMask & (1u << i))
|
||||
if ((procEntry->DisableEffectsMask & (1u << i)) || !GetEffect(i)->CheckEffectProc(aurApp, eventInfo))
|
||||
|
||||
Reference in New Issue
Block a user