diff options
Diffstat (limited to 'src/game/g_active.c')
-rw-r--r-- | src/game/g_active.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/g_active.c b/src/game/g_active.c index 84bdd7d9..921d2388 100644 --- a/src/game/g_active.c +++ b/src/game/g_active.c @@ -1171,7 +1171,7 @@ void G_UnlaggedOn( gentity_t *attacker, vec3_t muzzle, float range ) if( !g_unlagged.integer ) return; - if( !attacker->client->useUnlagged ) + if( !attacker->client->pers.useUnlagged ) return; for( i = 0; i < level.maxclients; i++ ) @@ -1242,7 +1242,7 @@ static void G_UnlaggedDetectCollisions( gentity_t *ent ) if( !g_unlagged.integer ) return; - if( !ent->client->useUnlagged ) + if( !ent->client->pers.useUnlagged ) return; calc = &ent->client->unlaggedCalc; |