diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/game/g_physics.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/g_physics.c b/src/game/g_physics.c index 57635199..cecd9cb3 100644 --- a/src/game/g_physics.c +++ b/src/game/g_physics.c @@ -94,9 +94,9 @@ void G_Physics( gentity_t *ent, int msec ) { if( ent->s.eType == ET_BUILDABLE ) { - if( ent->s.pos.trType != BG_Buildable( ent->s.modelindex )->turretProjType ) + if( ent->s.pos.trType != BG_Buildable( ent->s.modelindex )->traj ) { - ent->s.pos.trType = BG_Buildable( ent->s.modelindex )->turretProjType; + ent->s.pos.trType = BG_Buildable( ent->s.modelindex )->traj; ent->s.pos.trTime = level.time; } } |