From ed8e61d937a183b69df78b099e60b3b91ec9ea62 Mon Sep 17 00:00:00 2001 From: SylvaniaCore deploy Date: Fri, 10 Jul 2026 13:08:36 +0000 Subject: [PATCH] fix(monk): activer la maitrise WW Combo Strikes (115636) Les 3 classes spell_monk_mastery_combo_strikes(_periodic_auras/_periodic_triggers) existaient mais n etaient jamais enregistrees dans AddSC_monk_spell_scripts (boot log: no core script found). Enregistrement des 3 classes. La classe principale (deja bindee sur Tiger Palm/Blackout Kick/Flying Serpent Kick/Rising Sun Kick) applique desormais le bonus de maitrise sur les enchainements non repetes + pilote le talent Hit Combo. Les variantes periodiques (Fists of Fury/Spinning Crane Kick/Whirling Dragon Punch) necessitent leurs bindings spell_script_names. Co-Authored-By: Claude Fable 5 --- src/server/scripts/Spells/spell_monk.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/server/scripts/Spells/spell_monk.cpp b/src/server/scripts/Spells/spell_monk.cpp index 0188553..d0b5287 100644 --- a/src/server/scripts/Spells/spell_monk.cpp +++ b/src/server/scripts/Spells/spell_monk.cpp @@ -4038,6 +4038,9 @@ void AddSC_monk_spell_scripts() new spell_monk_jab(); new spell_monk_jade_serpent_statue(); new spell_monk_keg_smash(); + new spell_monk_mastery_combo_strikes(); + new spell_monk_mastery_combo_strikes_periodic_auras(); + new spell_monk_mastery_combo_strikes_periodic_triggers(); new spell_monk_legacy_of_the_emperor(); new spell_monk_lifecycles(); new spell_monk_life_cocoon();