mirror of
https://github.com/jugeeya/UltimateTrainingModpack.git
synced 2024-11-28 04:44:06 +00:00
Initial
This commit is contained in:
parent
230943ac70
commit
00b3acba4e
2 changed files with 1 additions and 20 deletions
|
@ -201,17 +201,6 @@ pub fn handle_final_input_mapping(
|
|||
EVENT_QUEUE.push(Event::menu_open(menu_json));
|
||||
}
|
||||
});
|
||||
(button_mapping(ButtonConfig::PLUS, style, button_presses)
|
||||
|| button_mapping(ButtonConfig::MINUS, style, button_presses))
|
||||
.then(|| {
|
||||
received_input = true;
|
||||
// Leave menu.
|
||||
frame_counter::start_counting(*MENU_CLOSE_FRAME_COUNTER);
|
||||
QUICK_MENU_ACTIVE = false;
|
||||
let menu_json = app.get_menu_selections();
|
||||
set_menu_from_json(&menu_json);
|
||||
EVENT_QUEUE.push(Event::menu_open(menu_json));
|
||||
});
|
||||
button_mapping(ButtonConfig::X, style, button_presses).then(|| {
|
||||
app.save_defaults();
|
||||
received_input = true;
|
||||
|
|
|
@ -264,15 +264,6 @@ unsafe fn get_buffered_action(
|
|||
} else {
|
||||
None
|
||||
}
|
||||
} else if is_in_shieldstun(module_accessor) {
|
||||
let action = MENU.shieldstun_override.get_random();
|
||||
if action != Action::empty() {
|
||||
Some(action)
|
||||
} else if MENU.mash_triggers.contains(MashTrigger::SHIELDSTUN) {
|
||||
Some(MENU.mash_state.get_random())
|
||||
} else {
|
||||
None
|
||||
}
|
||||
} else if is_in_footstool(module_accessor) {
|
||||
let action = MENU.footstool_override.get_random();
|
||||
if action != Action::empty() {
|
||||
|
@ -312,6 +303,7 @@ unsafe fn get_buffered_action(
|
|||
{
|
||||
Some(MENU.mash_state.get_random())
|
||||
} else {
|
||||
// SHIELD handled in shield.rs
|
||||
// LEDGE handled in ledge.rs
|
||||
None
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue