mirror of
https://github.com/DrBeef/JKXR.git
synced 2025-01-19 06:51:06 +00:00
JKO - Ensure UseVR Position is only true when in first person
This commit is contained in:
parent
3b5121e349
commit
3897531544
1 changed files with 1 additions and 1 deletions
|
@ -725,7 +725,7 @@ void BG_CalculateVRSaberPosition( vec3_t origin, vec3_t angles )
|
|||
|
||||
bool BG_UseVRPosition( gentity_t *ent )
|
||||
{
|
||||
return ( ent->client && ent->client->ps.clientNum == 0);
|
||||
return ( ent->client && ent->client->ps.clientNum == 0 && !cg.renderingThirdPerson);
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in a new issue