diff options
Diffstat (limited to 'src/game/g_weapon.c')
-rw-r--r-- | src/game/g_weapon.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/g_weapon.c b/src/game/g_weapon.c index 9e751209..f75a33d6 100644 --- a/src/game/g_weapon.c +++ b/src/game/g_weapon.c @@ -772,7 +772,7 @@ void areaZapFire( gentity_t *ent ) SnapVectorTowards( tr.endpos, muzzle ); // send railgun beam effect - tent = G_TempEntity( enemy->s.pos.trBase, EV_TESLATRAIL ); + tent = G_TempEntity( enemy->s.pos.trBase, EV_ALIENZAP ); VectorCopy( muzzle, tent->s.origin2 ); @@ -844,7 +844,7 @@ void directZapFire( gentity_t *ent ) SnapVectorTowards( tr.endpos, muzzle ); // send railgun beam effect - tent = G_TempEntity( target->s.pos.trBase, EV_TESLATRAIL ); + tent = G_TempEntity( target->s.pos.trBase, EV_ALIENZAP ); VectorCopy( muzzle, tent->s.origin2 ); |