Fov cvar fix (#98)

* game: set fov_desired cvar max value to 110
* scripts: waifulib: change '4.9,9' to '4.9,21' in configure example
This commit is contained in:
SanyaSho
2022-08-03 16:22:17 +03:00
committed by GitHub
parent 50ff9922a6
commit 48aa042ee1
5 changed files with 5 additions and 6 deletions
+1 -1
View File
@@ -859,7 +859,7 @@ void CGameRules::ClientSettingsChanged( CBasePlayer *pPlayer )
if ( pszFov )
{
int iFov = atoi(pszFov);
iFov = clamp( iFov, 75, 90 );
iFov = clamp( iFov, 75, 110 );
pPlayer->SetDefaultFOV( iFov );
}