From 4b7d958a7217b75c6994d618fa2dcafb2fe4d5cd Mon Sep 17 00:00:00 2001 From: HawkCorrigan Date: Sat, 14 Feb 2026 14:40:08 +0100 Subject: [PATCH] [ele] fix auto rotation --- engine/class_modules/sc_shaman.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/engine/class_modules/sc_shaman.cpp b/engine/class_modules/sc_shaman.cpp index d99c2fddd00..e3d1dc0cede 100644 --- a/engine/class_modules/sc_shaman.cpp +++ b/engine/class_modules/sc_shaman.cpp @@ -12706,6 +12706,8 @@ std::vector shaman_t::action_names_from_spell_id( unsigned int spel parsed_assisted_combat_rule_t shaman_t::parse_assisted_combat_rule( const assisted_combat_rule_data_t& rule, const assisted_combat_step_data_t& step ) const { + if ( rule.condition_type == AC_AURA_ON_PLAYER && rule.condition_value_1 == 1271904 ) // Arcane Intellect Highlight + return { "aura.skyfury.down" }; return parse_player_effects_t::parse_assisted_combat_rule( rule, step ); }