From c9746240ff24cb4be25f03c111d76566548ab8b7 Mon Sep 17 00:00:00 2001 From: Sam Date: Thu, 2 Sep 2021 19:27:07 -0400 Subject: [PATCH] Recover section no longer has 0 movement. --- common/src/states/roll.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/common/src/states/roll.rs b/common/src/states/roll.rs index d3c593bfd7..5be93f86b4 100644 --- a/common/src/states/roll.rs +++ b/common/src/states/roll.rs @@ -111,6 +111,7 @@ impl CharacterBehavior for Data { } }, StageSection::Recover => { + handle_move(data, &mut update, 1.0); // Allows for jumps to interrupt recovery in roll if self.timer < self.static_data.recover_duration && !handle_jump(data, &mut update, 1.5)