Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions fighters/common/src/function_hooks/controls.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down