diff options
author | Dinorush <62536724+Dinorush@users.noreply.github.com> | 2022-10-21 22:39:16 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-22 03:39:16 +0100 |
commit | e9beee8d500f1729b6c051fba17beb493da43c24 (patch) | |
tree | a92f97bd7963c44a9627072f080a4f926a74ed30 | |
parent | a758993e51bcc83a9982d313900d19fe36223383 (diff) | |
download | NorthstarMods-e9beee8d500f1729b6c051fba17beb493da43c24.tar.gz NorthstarMods-e9beee8d500f1729b6c051fba17beb493da43c24.zip |
Fix invalid titan soul crash on arm badge (#361)
-rw-r--r-- | Northstar.Custom/mod/scripts/vscripts/titan/sh_titan.gnut | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Northstar.Custom/mod/scripts/vscripts/titan/sh_titan.gnut b/Northstar.Custom/mod/scripts/vscripts/titan/sh_titan.gnut index 92b4924b..814e4430 100644 --- a/Northstar.Custom/mod/scripts/vscripts/titan/sh_titan.gnut +++ b/Northstar.Custom/mod/scripts/vscripts/titan/sh_titan.gnut @@ -219,7 +219,7 @@ void function AddArmBadgeToTitan( entity soul ) void function AddArmBadgeToTitan_Internal( entity soul ) { - soul.EndSignal( "OnDeath" ) + soul.EndSignal( "OnDestroy" ) // wait until the end of the frame to allow the soul to become owned by a boss player WaitEndFrame() |