Skip to content

Commit

Permalink
Fix FL_CLIENT not being bitwise OR'd in
Browse files Browse the repository at this point in the history
  • Loading branch information
SamVanheer committed Mar 9, 2022
1 parent af5155d commit d096df2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dlls/weapons/CDisplacerBall.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ void CDisplacerBall::BallTouch(CBaseEntity* pOther)

//Clear any flags set on player (onground, using grapple, etc).
pPlayer->pev->flags &= FL_FAKECLIENT;
pPlayer->pev->flags = FL_CLIENT;
pPlayer->pev->flags |= FL_CLIENT;
pPlayer->m_flFallVelocity = 0;

if (g_pGameRules->IsCTF() && pPlayer->m_pFlag)
Expand Down

0 comments on commit d096df2

Please sign in to comment.