Skip to content

Commit

Permalink
applied fix from V952 in this github thread ValveSoftware/source-sdk-…
Browse files Browse the repository at this point in the history
…2013#213 to fix the jittery view when walking up steep staircases
  • Loading branch information
AdamTadeusz committed May 11, 2024
1 parent b8d1e1c commit c02e5c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mp/src/game/server/baseentity.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ IMPLEMENT_SERVERCLASS_ST_NOBASE( CBaseEntity, DT_BaseEntity )
#if PREDICTION_ERROR_CHECK_LEVEL > 1
SendPropVector (SENDINFO(m_vecOrigin), -1, SPROP_NOSCALE|SPROP_CHANGES_OFTEN, 0.0f, HIGH_DEFAULT, SendProxy_Origin ),
#else
SendPropVector (SENDINFO(m_vecOrigin), -1, SPROP_COORD|SPROP_CHANGES_OFTEN, 0.0f, HIGH_DEFAULT, SendProxy_Origin ),
SendPropVector (SENDINFO(m_vecOrigin), -1, SPROP_NOSCALE|SPROP_CHANGES_OFTEN, 0.0f, HIGH_DEFAULT, SendProxy_Origin ),
#endif

SendPropInt (SENDINFO( m_ubInterpolationFrame ), NOINTERP_PARITY_MAX_BITS, SPROP_UNSIGNED ),
Expand Down

0 comments on commit c02e5c0

Please sign in to comment.