File tree 1 file changed +4
-4
lines changed
fighters/common/src/general_statuses/shield
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -434,6 +434,10 @@ pub unsafe fn sub_guard_cont(fighter: &mut L2CFighterCommon) -> L2CValue {
434
434
return true . into ( ) ;
435
435
}
436
436
437
+ if check_plat_drop_oos ( fighter) . get_bool ( ) {
438
+ return true . into ( ) ;
439
+ }
440
+
437
441
if !guard_hold {
438
442
if check_escape_oos ( fighter, true ) . get_bool ( ) || check_cstick_escape_oos ( fighter, true ) . get_bool ( ) {
439
443
return true . into ( ) ;
@@ -448,10 +452,6 @@ pub unsafe fn sub_guard_cont(fighter: &mut L2CFighterCommon) -> L2CValue {
448
452
return true . into ( ) ;
449
453
}
450
454
451
- if check_plat_drop_oos ( fighter) . get_bool ( ) {
452
- return true . into ( ) ;
453
- }
454
-
455
455
// check parry
456
456
if fighter. is_parry_input ( ) {
457
457
fighter. change_status ( FIGHTER_STATUS_KIND_GUARD_OFF . into ( ) , true . into ( ) ) ;
You can’t perform that action at this time.
0 commit comments