diff --git a/SQCSim2021/player.cpp b/SQCSim2021/player.cpp index 57a2e71..49967ac 100644 --- a/SQCSim2021/player.cpp +++ b/SQCSim2021/player.cpp @@ -35,7 +35,7 @@ void Player::Move(bool front, bool back, bool left, bool right, bool jump, bool if (jumped && !jump) jumped = false; // Anti-rebondissement du saut, pour pouvoir rebondir. - if (dash) dashtimeout = 5; + if (dash) dashtimeout = 2; if ((jump || dash) && dbljump < 2 && !jumped ) { accjmp += jump? m_jumpforce: 0.1f;