Skip to content

Commit

Permalink
[Hunter] Add plumbing for T31 for MM and SV
Browse files Browse the repository at this point in the history
  • Loading branch information
Pewtro committed Sep 10, 2023
1 parent 80857ef commit b5b9b9f
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions engine/class_modules/sc_hunter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -355,6 +355,10 @@ struct hunter_t final : public player_t
// T31 - Amirdrassil: The Dream's Hope
spell_data_ptr_t t31_bm_2pc;
spell_data_ptr_t t31_bm_4pc;
spell_data_ptr_t t31_mm_2pc;
spell_data_ptr_t t31_mm_4pc;
spell_data_ptr_t t31_sv_2pc;
spell_data_ptr_t t31_sv_4pc;
} tier_set;

// Buffs
Expand Down Expand Up @@ -6783,6 +6787,10 @@ void hunter_t::init_spells()

tier_set.t31_bm_2pc = sets -> set( HUNTER_BEAST_MASTERY, T31, B2 );
tier_set.t31_bm_4pc = sets -> set( HUNTER_BEAST_MASTERY, T31, B4 );
tier_set.t31_mm_2pc = sets -> set( HUNTER_MARKSMANSHIP, T31, B2 );
tier_set.t31_mm_4pc = sets -> set( HUNTER_MARKSMANSHIP, T31, B4 );
tier_set.t31_sv_2pc = sets -> set( HUNTER_SURVIVAL, T31, B2 );
tier_set.t31_sv_4pc = sets -> set( HUNTER_SURVIVAL, T31, B4 );

// Cooldowns
cooldowns.ruthless_marauder -> duration = talents.ruthless_marauder -> internal_cooldown();
Expand Down

0 comments on commit b5b9b9f

Please sign in to comment.