• R/O
  • SSH

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Revisión4b053a8fb9c6aee754b4f09d61dd3fe1ff0b8153 (tree)
Tiempo2021-11-30 00:15:15
AutorAdam Kaminski <kaminskiadam9@gmai...>
CommiterAdam Kaminski

Log Message

Fixed players feeling jittery while jumping when the skip correction was enabled.

Cambiar Resumen

Diferencia incremental

diff -r 3147116cf3a2 -r 4b053a8fb9c6 src/sv_main.cpp
--- a/src/sv_main.cpp Thu Dec 02 00:13:21 2021 -0500
+++ b/src/sv_main.cpp Mon Nov 29 10:15:15 2021 -0500
@@ -7619,7 +7619,7 @@
76197619 {
76207620 pmo->z = pmo->floorz;
76217621 }
7622- else
7622+ else if ( oldFloorZ != pmo->floorz )
76237623 {
76247624 // [AK] Check if the player should move with the floor if it moved, similarly to PIT_FloorDrop.
76257625 if (( pmo->velz == 0 ) && (!( pmo->flags & MF_NOGRAVITY ) || ( pmo->z == oldFloorZ && !( pmo->flags & MF_NOLIFTDROP ))))