feat: replace bitwise or operator

This commit is contained in:
CosminPerRam
2025-05-28 22:59:36 +03:00
committed by EricS-Valve
parent 74a7bf6bdc
commit 52e5aff811

View File

@@ -304,5 +304,5 @@ bool CHealthAmmoKit::MyTouch( CBasePlayer *pPlayer )
}
}
return bAmmoSuccess | bHealthSuccess;
return bAmmoSuccess || bHealthSuccess;
}