Skip to content

Commit

Permalink
[Restoration] master shapeshifter applies while in moonkin form
Browse files Browse the repository at this point in the history
  • Loading branch information
gastank committed Mar 2, 2025
1 parent da719ed commit 0a573b2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions engine/class_modules/sc_druid.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8473,7 +8473,7 @@ struct starfire_base_t : public use_fluid_form_t<DRUID_BALANCE, ap_generator_t>
{
const auto& eff = p->talent.master_shapeshifter->effectN( 2 );
add_parse_entry( da_multiplier_effects )
.set_func( [ p = p ] { return p->form == NO_FORM; } )
.set_func( [ p = p ] { return p->form == NO_FORM || p->form == MOONKIN_FORM; } )
.set_value( eff.percent() )
.set_eff( &eff );
}
Expand Down Expand Up @@ -8572,7 +8572,7 @@ struct starsurge_offspec_t final : public trigger_call_of_the_elder_druid_t<drui
{
const auto& eff = p->talent.master_shapeshifter->effectN( 2 );
add_parse_entry( da_multiplier_effects )
.set_func( [ p = p ] { return p->form == NO_FORM; } )
.set_func( [ p = p ] { return p->form == NO_FORM || p->form == MOONKIN_FORM; } )
.set_value( eff.percent() )
.set_eff( &eff );
}
Expand Down Expand Up @@ -8988,7 +8988,7 @@ struct wrath_base_t : public use_fluid_form_t<DRUID_BALANCE, ap_generator_t>
{
const auto& eff = p->talent.master_shapeshifter->effectN( 2 );
add_parse_entry( da_multiplier_effects )
.set_func( [ p = p ] { return p->form == NO_FORM; } )
.set_func( [ p = p ] { return p->form == NO_FORM || p->form == MOONKIN_FORM; } )
.set_value( eff.percent() )
.set_eff( &eff );
}
Expand Down

0 comments on commit 0a573b2

Please sign in to comment.