mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-03-08 02:00:29 +00:00
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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user