From 3b1ae258ba883e4481fbb8b3b05d209b0d519194 Mon Sep 17 00:00:00 2001 From: jugeeya Date: Fri, 8 Mar 2024 11:48:49 -0800 Subject: [PATCH] Update mod.rs --- src/training/mod.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/training/mod.rs b/src/training/mod.rs index dd75bc7..c891b23 100644 --- a/src/training/mod.rs +++ b/src/training/mod.rs @@ -123,9 +123,6 @@ fn once_per_frame_per_fighter(module_accessor: &mut BattleObjectModuleAccessor, } unsafe { - input_record::handle_recording(); - frame_counter::tick_ingame(); - tech::hide_tech(); if menu::menu_condition() { menu::spawn_menu(); } @@ -137,6 +134,9 @@ fn once_per_frame_per_fighter(module_accessor: &mut BattleObjectModuleAccessor, !(MENU.stale_dodges.as_bool()), *FIGHTER_INSTANCE_WORK_ID_FLAG_DISABLE_ESCAPE_PENALTY, ); + input_record::handle_recording(); + frame_counter::tick_ingame(); + tech::hide_tech(); } combo::get_command_flag_cat(module_accessor);