Skip to content

Commit

Permalink
[monk] Fix OF for Tiger Palm.
Browse files Browse the repository at this point in the history
  • Loading branch information
renanthera committed Sep 11, 2024
1 parent 1812269 commit 9a11f42
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions engine/class_modules/monk/sc_monk.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1195,7 +1195,7 @@ struct tiger_palm_t : public overwhelming_force_t<monk_melee_attack_t>
{
if ( p()->talent.brewmaster.press_the_advantage->ok() )
return false;
return monk_melee_attack_t::ready();
return base_t::ready();
}

void execute() override
Expand All @@ -1215,10 +1215,10 @@ struct tiger_palm_t : public overwhelming_force_t<monk_melee_attack_t>

//------------

monk_melee_attack_t::execute();
base_t::execute();

if ( p()->talent.mistweaver.awakened_jadefire->ok() && p()->buff.jadefire_stomp->up() )
monk_melee_attack_t::execute();
base_t::execute();

p()->buff.blackout_combo->expire();

Expand Down Expand Up @@ -1263,7 +1263,7 @@ struct tiger_palm_t : public overwhelming_force_t<monk_melee_attack_t>

void impact( action_state_t *s ) override
{
monk_melee_attack_t::impact( s );
base_t::impact( s );

p()->buff.teachings_of_the_monastery->trigger();

Expand Down

0 comments on commit 9a11f42

Please sign in to comment.