From 233afffeae409e7b4f251f6e2fcd2f4738490bce Mon Sep 17 00:00:00 2001 From: Aezeor Date: Wed, 2 Sep 2026 10:51:33 -0400 Subject: [PATCH] [DH] Swap thrill of the fight haste and damage buff application times --- engine/class_modules/sc_demon_hunter.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/engine/class_modules/sc_demon_hunter.cpp b/engine/class_modules/sc_demon_hunter.cpp index dd2b29aad3f..12a09341da6 100644 --- a/engine/class_modules/sc_demon_hunter.cpp +++ b/engine/class_modules/sc_demon_hunter.cpp @@ -2804,10 +2804,10 @@ struct art_of_the_glaive_trigger_t : public BASE { if ( BASE::dh()->talent.aldrachi_reaver.thrill_of_the_fight->ok() ) { - BASE::dh()->buff.thrill_of_the_fight_haste->trigger(); + BASE::dh()->buff.thrill_of_the_fight_damage->trigger(); make_event( *BASE::dh()->sim, thrill_delay, - [ this ] { BASE::dh()->buff.thrill_of_the_fight_damage->trigger(); } ); + [ this ] { BASE::dh()->buff.thrill_of_the_fight_haste->trigger(); } ); } if ( BASE::dh()->talent.aldrachi_reaver.aldrachi_tactics->ok() ) {