aboutsummaryrefslogtreecommitdiff
path: root/Northstar.Custom/mod/scripts/vscripts/gamemodes/cl_gamemode_fastball.gnut
diff options
context:
space:
mode:
authorBobTheBob <32057864+BobTheBob9@users.noreply.github.com>2022-04-09 22:01:35 +0100
committerGitHub <noreply@github.com>2022-04-09 23:01:35 +0200
commit67ec62f0c41d39fb605aad53c12d8d6fe02fb3aa (patch)
tree6110a6df58765f23cb27feea1e057c45d537b6b6 /Northstar.Custom/mod/scripts/vscripts/gamemodes/cl_gamemode_fastball.gnut
parentd8cbd386a5e1b76625e7192a147d41fc1ae12e1d (diff)
downloadNorthstarMods-67ec62f0c41d39fb605aad53c12d8d6fe02fb3aa.tar.gz
NorthstarMods-67ec62f0c41d39fb605aad53c12d8d6fe02fb3aa.zip
Fix crash issues on infection and fastball respawn (#294)
Diffstat (limited to 'Northstar.Custom/mod/scripts/vscripts/gamemodes/cl_gamemode_fastball.gnut')
-rw-r--r--Northstar.Custom/mod/scripts/vscripts/gamemodes/cl_gamemode_fastball.gnut2
1 files changed, 1 insertions, 1 deletions
diff --git a/Northstar.Custom/mod/scripts/vscripts/gamemodes/cl_gamemode_fastball.gnut b/Northstar.Custom/mod/scripts/vscripts/gamemodes/cl_gamemode_fastball.gnut
index f5fae006c..a8ce6a404 100644
--- a/Northstar.Custom/mod/scripts/vscripts/gamemodes/cl_gamemode_fastball.gnut
+++ b/Northstar.Custom/mod/scripts/vscripts/gamemodes/cl_gamemode_fastball.gnut
@@ -92,7 +92,7 @@ void function FastballRespawnPlayerEffects_Threaded()
// sometimes this seems to get called before the player has respawned clientside, so we just wait until the client thinks they're alive
entity player = GetLocalClientPlayer()
- while ( !IsAlive( player ) )
+ while ( !IsAlive( player ) || !IsValid( player.GetCockpit() ) )
WaitFrame()
StartParticleEffectOnEntity( player.GetCockpit(), GetParticleSystemIndex( $"P_pod_screen_lasers_OUT" ), FX_PATTACH_ABSORIGIN_FOLLOW, -1 )