Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/game/client/neo/c_neo_player.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -512,6 +512,7 @@ void C_NEO_Player::CheckVisionButtons()
C_RecipientFilter filter;
filter.AddRecipient(this);
filter.MakeReliable();
filter.UsePredictionRules();

EmitSound_t params;
params.m_bEmitCloseCaption = false;
Expand Down Expand Up @@ -1778,6 +1779,7 @@ void C_NEO_Player::PlayCloakSound(void)
C_RecipientFilter filter;
filter.AddRecipient(this);
filter.MakeReliable();
filter.UsePredictionRules();

static int tocOn = CBaseEntity::PrecacheScriptSound("NeoPlayer.ThermOpticOn");
static int tocOff = CBaseEntity::PrecacheScriptSound("NeoPlayer.ThermOpticOff");
Expand Down