From c1e6272774662846484bcedfda3e69548c991941 Mon Sep 17 00:00:00 2001 From: Thomas Kain Date: Sun, 16 Nov 2025 12:05:39 -0500 Subject: [PATCH] Comment out a call to remove a nonexistent particle effect on a player when cloaked Because the particle effect "balloontoss_drip" does not exist in TF2's files, this call causes an assertion error in clients whenever a Spy begins cloaking. Commenting out this call prevents this error from occurring. --- src/game/shared/tf/tf_player_shared.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game/shared/tf/tf_player_shared.cpp b/src/game/shared/tf/tf_player_shared.cpp index 65297449744..a718428ca4e 100644 --- a/src/game/shared/tf/tf_player_shared.cpp +++ b/src/game/shared/tf/tf_player_shared.cpp @@ -7000,7 +7000,7 @@ void CTFPlayerShared::OnAddStealthed( void ) #ifdef CLIENT_DLL // Remove water balloon effect if it on player - m_pOuter->ParticleProp()->StopParticlesNamed( "balloontoss_drip", true ); + // m_pOuter->ParticleProp()->StopParticlesNamed( "balloontoss_drip", true ); m_pOuter->UpdateSpyStateChange(); m_pOuter->UpdateKillStreakEffects( GetStreak( kTFStreak_Kills ) );