From a5a88d9fe375405972cf780bd420138a233bb7e4 Mon Sep 17 00:00:00 2001 From: Dorovon <50294688+Dorovon@users.noreply.github.com> Date: Fri, 4 Feb 2022 06:01:51 -0700 Subject: [PATCH] [Mage] adjust Frost Storm target As of 9.2.0.42174, Frost Storm now hits the target of the spell that triggered the proc instead of the player's target. --- engine/class_modules/sc_mage.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/class_modules/sc_mage.cpp b/engine/class_modules/sc_mage.cpp index cb0b580ff5c..2a8418ac238 100644 --- a/engine/class_modules/sc_mage.cpp +++ b/engine/class_modules/sc_mage.cpp @@ -1652,7 +1652,7 @@ struct mage_spell_t : public spell_t && rng().roll( p()->sets->set( MAGE_FROST, T28, B2 )->proc_chance() ) ) { p()->cooldowns.frost_storm->start( p()->sets->set( MAGE_FROST, T28, B2 )->internal_cooldown() ); - p()->action.frost_storm_comet_storm->execute_on_target( p()->target ); + p()->action.frost_storm_comet_storm->execute_on_target( s->target ); } }