aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJack <66967891+ASpoonPlaysGames@users.noreply.github.com>2023-09-17 01:38:49 +0100
committerGitHub <noreply@github.com>2023-09-17 02:38:49 +0200
commit0068720fe91307c1e538b6a104dc308204fcf400 (patch)
treeafb5e2548f36fc233014ffa3c12893b2e0951ab6
parent43d238aa41b85345266f1c35fe1d42ef88610f1e (diff)
downloadNorthstarMods-0068720fe91307c1e538b6a104dc308204fcf400.tar.gz
NorthstarMods-0068720fe91307c1e538b6a104dc308204fcf400.zip
Fix a crash with IsPetTitan (#701)
-rw-r--r--Northstar.CustomServers/mod/scripts/vscripts/_utility_shared.nut3
1 files changed, 3 insertions, 0 deletions
diff --git a/Northstar.CustomServers/mod/scripts/vscripts/_utility_shared.nut b/Northstar.CustomServers/mod/scripts/vscripts/_utility_shared.nut
index c5887f2b3..47dd9294f 100644
--- a/Northstar.CustomServers/mod/scripts/vscripts/_utility_shared.nut
+++ b/Northstar.CustomServers/mod/scripts/vscripts/_utility_shared.nut
@@ -1601,6 +1601,9 @@ float function GetPulseFrac( rate = 1, startTime = 0 )
bool function IsPetTitan( titan )
{
Assert( titan.IsTitan() )
+
+ if ( !titan.GetTitanSoul() )
+ return false
return titan.GetTitanSoul().GetBossPlayer() != null
}