Skip to content

Commit

Permalink
fix x-33 not buffing the carrier (but visually appearing to)
Browse files Browse the repository at this point in the history
  • Loading branch information
BenLubar committed Jul 20, 2024
1 parent a32b924 commit 9dd950d
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/game/server/swarm/asw_aoegrenade_projectile.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -333,6 +333,12 @@ void CASW_AOEGrenade_Projectile::GiveEffectToEntitesInRadius( void )

if ( bDoAOE )
{
FOR_EACH_VEC( m_hForcedTargets, i )
{
Assert( IsAOETarget( m_hForcedTargets[i] ) );
DoAOE( m_hForcedTargets[i] );
}

m_flLastDoAOE = gpGlobals->curtime;
}
}
Expand Down

0 comments on commit 9dd950d

Please sign in to comment.