Skip to content

Commit

Permalink
[monk] Restore vivify parse_options. Remove `shared.shadowboxing_tr…
Browse files Browse the repository at this point in the history
…eads`.
  • Loading branch information
renanthera committed Sep 6, 2024
1 parent 1b4d824 commit cded6bf
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions engine/class_modules/monk/sc_monk.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1954,7 +1954,7 @@ struct sck_tick_action_t : charred_passions_t<monk_melee_attack_t>
sck_tick_action_t( monk_t *p, std::string_view name, const spell_data_t *data )
: charred_passions_t<monk_melee_attack_t>( p, name, data )
{
ww_mastery = true;
ww_mastery = true;

dual = background = true;
aoe = -1;
Expand Down Expand Up @@ -4617,8 +4617,9 @@ struct vivify_t : public monk_heal_t
{
vivify_t( monk_t *p, util::string_view options_str ) : monk_heal_t( p, "vivify", p->baseline.monk.vivify )
{
spell_power_mod.direct = data().effectN( 1 ).sp_coeff();
parse_options( options_str );

spell_power_mod.direct = data().effectN( 1 ).sp_coeff();
base_execute_time += p->talent.monk.vivacious_vivification->effectN( 1 ).time_value();
}

Expand Down Expand Up @@ -7020,9 +7021,6 @@ void monk_t::init_spells()

shared.rushing_jade_wind = _priority( talent.windwalker.rushing_jade_wind, talent.brewmaster.rushing_jade_wind );

shared.shadowboxing_treads =
_priority( talent.windwalker.shadowboxing_treads, talent.brewmaster.shadowboxing_treads );

if ( talent.windwalker.teachings_of_the_monastery->ok() )
shared.teachings_of_the_monastery = talent.windwalker.teachings_of_the_monastery;
else if ( baseline.mistweaver.teachings_of_the_monastery->ok() )
Expand Down

0 comments on commit cded6bf

Please sign in to comment.