We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 913be7e commit 732556fCopy full SHA for 732556f
1 file changed
engine/class_modules/sc_hunter.cpp
@@ -8336,7 +8336,6 @@ void hunter_t::init_blizzard_action_list()
8336
switch ( specialization() )
8337
{
8338
case HUNTER_BEAST_MASTERY:
8339
- cooldowns->add_action( "bestial_wrath" );
8340
break;
8341
case HUNTER_MARKSMANSHIP:
8342
cooldowns->add_action( "trueshot" );
@@ -8362,6 +8361,11 @@ std::vector<std::string> hunter_t::action_names_from_spell_id( unsigned int spel
8362
8361
return { "kill_shot", "black_arrow" };
8363
}
8364
+ if( spell_id == 19574 && specialization() == HUNTER_BEAST_MASTERY )
8365
+ {
8366
+ return { "bestial_wrath", "wailing_arrow" };
8367
+ }
8368
+
8369
return player_t::action_names_from_spell_id( spell_id );
8370
8371
0 commit comments