mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-01-31 21:50:48 +00:00
Don't turn-to-ability while climbing
This commit is contained in:
parent
a03ab5e294
commit
022a44fb01
1 changed files with 1 additions and 1 deletions
|
@ -1554,7 +1554,7 @@ void G_BuildTiccmd(ticcmd_t *cmd, INT32 realtics, UINT8 ssplayer)
|
|||
fixed_t camadjustfactor;
|
||||
boolean alt = false; // Reduce intensity on diagonals and prevent backwards movement from turning the camera
|
||||
|
||||
if (player->climbing || player->pflags & PF_GLIDING)
|
||||
if (player->pflags & PF_GLIDING)
|
||||
camadjustfactor = cv_cam_turnfacingability[forplayer].value/4;
|
||||
else if (player->pflags & PF_STARTDASH)
|
||||
camadjustfactor = cv_cam_turnfacingspindash[forplayer].value/4;
|
||||
|
|
Loading…
Reference in a new issue