From 94be0d1599d8c25550d8388d71390effeadc19df Mon Sep 17 00:00:00 2001 From: Archimtiros <33777056+Archimtiros@users.noreply.github.com> Date: Sat, 21 Dec 2024 14:39:32 -0500 Subject: [PATCH] [Warrior] Disable Colossal Might from Execute on PTR --- engine/class_modules/sc_warrior.cpp | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/engine/class_modules/sc_warrior.cpp b/engine/class_modules/sc_warrior.cpp index 28b1d9ba8da..37a8c8e2b13 100644 --- a/engine/class_modules/sc_warrior.cpp +++ b/engine/class_modules/sc_warrior.cpp @@ -4605,13 +4605,16 @@ struct execute_arms_t : public warrior_attack_t p() -> buff.fervid -> trigger( 1, buff_t::DEFAULT_VALUE(), 0.25 ); } - if ( p()->talents.colossus.colossal_might->ok() ) + if ( !player->is_ptr() ) { - if ( p()->talents.colossus.dominance_of_the_colossus->ok() && p()->buff.colossal_might->at_max_stacks() ) + if ( p()->talents.colossus.colossal_might->ok() ) { - p()->cooldown.demolish->adjust( - timespan_t::from_seconds( p()->talents.colossus.dominance_of_the_colossus->effectN( 2 ).base_value() ) ); + if ( p()->talents.colossus.dominance_of_the_colossus->ok() && p()->buff.colossal_might->at_max_stacks() ) + { + p()->cooldown.demolish->adjust( - timespan_t::from_seconds( p()->talents.colossus.dominance_of_the_colossus->effectN( 2 ).base_value() ) ); + } + p()->buff.colossal_might->trigger(); } - p()->buff.colossal_might->trigger(); } }