Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion engine/class_modules/monk/sc_monk.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1688,6 +1688,7 @@ struct spinning_crane_kick_t : public monk_melee_attack_t

void execute() override
{
set_target( player );
auto *tick = spinning_crane_kick_tick;
if ( !tick->execute_state )
tick->execute_state = tick->get_state();
Expand Down Expand Up @@ -6476,7 +6477,8 @@ void monk_t::create_buffs()
buff.whirling_dragon_punch = make_buff_fallback<buffs::whirling_dragon_punch_buff_t>(
talent.windwalker.whirling_dragon_punch->ok(), this, "whirling_dragon_punch" );

buff.zenith = make_buff_fallback<buffs::zenith_t>( talent.windwalker.zenith->ok(), this, "zenith" );
buff.zenith = make_buff_fallback<buffs::zenith_t>( talent.windwalker.zenith->ok(), this, "zenith" )
->set_expire_callback( [ & ]( buff_t *, int, timespan_t ) { buff.zenith_stomp->expire(); } );

buff.zenith_stomp = make_buff_fallback( talent.windwalker.tigereye_brew_3->ok(), this, "zenith_stomp",
talent.monk.zenith_stomp_buff );
Expand Down
Loading