mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-20 17:27:36 +01:00
Scripts/BWD: Maloriak's Consuming Flames will no longer deal increased damage from its own damage
This commit is contained in:
@@ -943,7 +943,10 @@ class spell_maloriak_consuming_flames: public AuraScript
|
||||
{
|
||||
bool CheckProc(ProcEventInfo& eventInfo)
|
||||
{
|
||||
return eventInfo.GetSpellInfo() && eventInfo.GetDamageInfo();
|
||||
if (eventInfo.GetSpellInfo() && eventInfo.GetSpellInfo()->Id == GetId())
|
||||
return false;
|
||||
|
||||
return eventInfo.GetDamageInfo();
|
||||
}
|
||||
|
||||
void HandleProc(AuraEffect const* /*aurEff*/, ProcEventInfo& eventInfo)
|
||||
|
||||
Reference in New Issue
Block a user