From 135c4d85477c224bc5ba6f7be6d8cacf4671f16c Mon Sep 17 00:00:00 2001 From: Kate Martin <51387586+renanthera@users.noreply.github.com> Date: Thu, 9 Jul 2026 14:04:58 -0600 Subject: [PATCH] [monk] Zenith Stomp can be cast while channeling Spinning Crane Kick. Zenith Stomp is considered a combo strike ability. --- engine/class_modules/monk/sc_monk.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/engine/class_modules/monk/sc_monk.cpp b/engine/class_modules/monk/sc_monk.cpp index 7087ce112ae..cc763b8154d 100644 --- a/engine/class_modules/monk/sc_monk.cpp +++ b/engine/class_modules/monk/sc_monk.cpp @@ -3958,8 +3958,9 @@ struct zenith_stomp_t : monk_spell_t aoe = -1; reduced_aoe_targets = player->talent.monk.zenith_stomp->effectN( 1 ).base_value(); - may_combo_strike = false; + may_combo_strike = player->wowv_ge( { 12, 1, 0 } ); ww_mastery = true; + cast_during_sck = true; } void init() override