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:
parent
9b08a66c16
commit
92f12f3bce
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue