From 80125c1d0382aed4a3b1be37648c08c852ad1404 Mon Sep 17 00:00:00 2001 From: SuddyN Date: Sun, 21 Dec 2025 19:27:39 -0500 Subject: [PATCH] taunt footstool hotfix --- fighters/common/src/function_hooks/controls.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/fighters/common/src/function_hooks/controls.rs b/fighters/common/src/function_hooks/controls.rs index 511b0889ce..55d6baf9b4 100644 --- a/fighters/common/src/function_hooks/controls.rs +++ b/fighters/common/src/function_hooks/controls.rs @@ -910,6 +910,11 @@ unsafe fn map_controls_hook( (*out).buttons |= Buttons::GuardHold; } + // Taunt macros TreadJump + if (*out).buttons.intersects(Buttons::AppealAll) { + (*out).buttons |= Buttons::TreadJump; + } + // Check if the button combos are being pressed and then force Stock Share + AttackRaw/SpecialRaw depending on input if controller.current_buttons.l()