Skip to content

Commit 732556f

Browse files
committed
[Hunter] Add Wailing Arrow to assisted combat APL
1 parent 913be7e commit 732556f

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

engine/class_modules/sc_hunter.cpp

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8336,7 +8336,6 @@ void hunter_t::init_blizzard_action_list()
83368336
switch ( specialization() )
83378337
{
83388338
case HUNTER_BEAST_MASTERY:
8339-
cooldowns->add_action( "bestial_wrath" );
83408339
break;
83418340
case HUNTER_MARKSMANSHIP:
83428341
cooldowns->add_action( "trueshot" );
@@ -8362,6 +8361,11 @@ std::vector<std::string> hunter_t::action_names_from_spell_id( unsigned int spel
83628361
return { "kill_shot", "black_arrow" };
83638362
}
83648363

8364+
if( spell_id == 19574 && specialization() == HUNTER_BEAST_MASTERY )
8365+
{
8366+
return { "bestial_wrath", "wailing_arrow" };
8367+
}
8368+
83658369
return player_t::action_names_from_spell_id( spell_id );
83668370
}
83678371

0 commit comments

Comments
 (0)