diff options
author | Jack <66967891+ASpoonPlaysGames@users.noreply.github.com> | 2022-07-22 00:11:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-22 01:11:50 +0200 |
commit | 96f061ea081971e11ad6746940ba2dadbc395a25 (patch) | |
tree | c5b7d4414691c10e41fad9e2d32a3e5ae7159cf6 /Northstar.CustomServers | |
parent | 3376f726e962b97d798b3a7e7f03ccfe45cfe971 (diff) | |
download | NorthstarMods-96f061ea081971e11ad6746940ba2dadbc395a25.tar.gz NorthstarMods-96f061ea081971e11ad6746940ba2dadbc395a25.zip |
potentially fix nuke titan crash? (#445)
Diffstat (limited to 'Northstar.CustomServers')
-rw-r--r-- | Northstar.CustomServers/mod/scripts/vscripts/ai/_ai_nuke_titans.gnut | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Northstar.CustomServers/mod/scripts/vscripts/ai/_ai_nuke_titans.gnut b/Northstar.CustomServers/mod/scripts/vscripts/ai/_ai_nuke_titans.gnut index 2626abe1..1e8ec316 100644 --- a/Northstar.CustomServers/mod/scripts/vscripts/ai/_ai_nuke_titans.gnut +++ b/Northstar.CustomServers/mod/scripts/vscripts/ai/_ai_nuke_titans.gnut @@ -33,6 +33,9 @@ void function NukeTitanSeekOutGenerator( entity titan, entity generator ) titan.EndSignal( "OnDeath" ) titan.EndSignal( "OnDestroy" ) titan.EndSignal( "Doomed" ) + // should fix crash with invalid generator? + generator.EndSignal( "OnDeath" ) + generator.EndSignal( "OnDestroy" ) WaitSignal( titan, "FD_ReachedHarvester", "OnFailedToPath" ) |