fix(Core/Spells): Fix Frozen Power talent using wrong effect for proc chance (#24943)

Co-authored-by: blinkysc <blinkysc@users.noreply.github.com>
This commit is contained in:
blinkysc
2026-02-28 14:08:12 -06:00
committed by GitHub
parent 9b08a66c16
commit 92f12f3bce

View File

@@ -1384,7 +1384,7 @@ class spell_sha_frozen_power : public AuraScript
if (GetTarget()->GetDistance(target) < 15.0f)
return false;
return roll_chance_i(GetEffect(EFFECT_0)->GetAmount());
return roll_chance_i(GetEffect(EFFECT_1)->GetAmount());
}
void HandleProc(AuraEffect const* aurEff, ProcEventInfo& eventInfo)