mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-15 17:22:12 +00:00
By popular demand: Track switching only requires strafe instead of jump+strafe
This commit is contained in:
parent
f7a32835d5
commit
28abc883be
1 changed files with 1 additions and 1 deletions
|
@ -10106,7 +10106,7 @@ static void P_MinecartThink(player_t *player)
|
|||
// currentSpeed -= FRACUNIT/8;
|
||||
|
||||
// Jumping
|
||||
if ((player->cmd.buttons & BT_JUMP) && !(player->pflags & PF_JUMPDOWN))
|
||||
if (sidelock || ((player->cmd.buttons & BT_JUMP) && !(player->pflags & PF_JUMPDOWN)))
|
||||
{
|
||||
player->pflags |= PF_JUMPDOWN;
|
||||
|
||||
|
|
Loading…
Reference in a new issue