mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 01:58:19 +00:00
Fix the fix
This commit is contained in:
parent
fcfc5a4561
commit
7a991615f3
|
@ -1678,7 +1678,7 @@ void CCharacter::HandleTiles(int Index)
|
|||
}
|
||||
|
||||
// stopper
|
||||
if((m_Core.m_Vel.x > 0 || m_Core.m_Vel.y > 0) && (m_MoveRestrictions&CANTMOVE_DOWN))
|
||||
if(m_Core.m_Vel.y > 0 && (m_MoveRestrictions&CANTMOVE_DOWN))
|
||||
{
|
||||
m_Core.m_Jumped = 0;
|
||||
m_Core.m_JumpedTotal = 0;
|
||||
|
|
Loading…
Reference in a new issue