diff options
author | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2022-01-02 22:47:37 +0000 |
---|---|---|
committer | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2022-01-02 22:47:37 +0000 |
commit | 8a7360581bbc4cedab58ca1a7cf6973716c625e8 (patch) | |
tree | 29931e0024a4a69bf742528466a079be9eceb136 | |
parent | 18b691b3d2ba193c7358897fd913fcfa5d52341d (diff) | |
download | NorthstarMods-8a7360581bbc4cedab58ca1a7cf6973716c625e8.tar.gz NorthstarMods-8a7360581bbc4cedab58ca1a7cf6973716c625e8.zip |
fix potential crash in ttdm intro
-rw-r--r-- | Northstar.CustomServers/mod/scripts/vscripts/gamemodes/_gamemode_ttdm.nut | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Northstar.CustomServers/mod/scripts/vscripts/gamemodes/_gamemode_ttdm.nut b/Northstar.CustomServers/mod/scripts/vscripts/gamemodes/_gamemode_ttdm.nut index c72fcb0d..417d0fbf 100644 --- a/Northstar.CustomServers/mod/scripts/vscripts/gamemodes/_gamemode_ttdm.nut +++ b/Northstar.CustomServers/mod/scripts/vscripts/gamemodes/_gamemode_ttdm.nut @@ -53,6 +53,7 @@ void function TTDMIntroShowIntermissionCam( entity player ) void function PlayerWatchesTTDMIntroIntermissionCam( entity player )
{
+ player.EndSignal( "OnDestroy" )
ScreenFadeFromBlack( player )
entity intermissionCam = GetEntArrayByClass_Expensive( "info_intermission" )[ 0 ]
|