1
0
Fork 0
mirror of https://github.com/jugeeya/UltimateTrainingModpack.git synced 2025-03-23 06:46:11 +00:00

Fix Grab OOS (#89)

Fixed skipping the 4f additional shield hold
This commit is contained in:
sidschingis 2020-06-15 16:25:25 +02:00 committed by GitHub
parent 919196c38b
commit 401bf7e98b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -220,10 +220,10 @@ unsafe fn handle_attack_option(
if !WorkModule::is_enable_transition_term( if !WorkModule::is_enable_transition_term(
module_accessor, module_accessor,
*FIGHTER_STATUS_TRANSITION_TERM_ID_CONT_CATCH, *FIGHTER_STATUS_TRANSITION_TERM_ID_CONT_CATCH,
) || !WorkModule::get_int( ) || WorkModule::get_int(
module_accessor, module_accessor,
*FIGHTER_INSTANCE_WORK_ID_INT_INVALID_CATCH_FRAME, *FIGHTER_INSTANCE_WORK_ID_INT_INVALID_CATCH_FRAME,
) == 0 ) != 0
{ {
return; return;
} }