Skip to content

Commit a63ceb0

Browse files
committed
raise shield drop priority
1 parent a2d13ae commit a63ceb0

File tree

1 file changed

+4
-4
lines changed
  • fighters/common/src/general_statuses/shield

1 file changed

+4
-4
lines changed

fighters/common/src/general_statuses/shield/misc.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -434,6 +434,10 @@ pub unsafe fn sub_guard_cont(fighter: &mut L2CFighterCommon) -> L2CValue {
434434
return true.into();
435435
}
436436

437+
if check_plat_drop_oos(fighter).get_bool() {
438+
return true.into();
439+
}
440+
437441
if !guard_hold {
438442
if check_escape_oos(fighter, true).get_bool() || check_cstick_escape_oos(fighter, true).get_bool() {
439443
return true.into();
@@ -448,10 +452,6 @@ pub unsafe fn sub_guard_cont(fighter: &mut L2CFighterCommon) -> L2CValue {
448452
return true.into();
449453
}
450454

451-
if check_plat_drop_oos(fighter).get_bool() {
452-
return true.into();
453-
}
454-
455455
// check parry
456456
if fighter.is_parry_input() {
457457
fighter.change_status(FIGHTER_STATUS_KIND_GUARD_OFF.into(), true.into());

0 commit comments

Comments
 (0)