diff options
author | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2021-12-29 01:34:04 +0000 |
---|---|---|
committer | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2021-12-29 01:34:04 +0000 |
commit | 4fe3ce1900f0197f9a41d0b54d22079cf149dbeb (patch) | |
tree | 2278f7aa1e0dc10600af06b3608af182cf43a351 | |
parent | 7652539f68a35bd78e27e4394cf66a269212febb (diff) | |
download | NorthstarMods-4fe3ce1900f0197f9a41d0b54d22079cf149dbeb.tar.gz NorthstarMods-4fe3ce1900f0197f9a41d0b54d22079cf149dbeb.zip |
fix crash when disconnecting from livefire with flag held
-rw-r--r-- | Northstar.CustomServers/mod/scripts/vscripts/gamemodes/_gamemode_speedball.nut | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Northstar.CustomServers/mod/scripts/vscripts/gamemodes/_gamemode_speedball.nut b/Northstar.CustomServers/mod/scripts/vscripts/gamemodes/_gamemode_speedball.nut index 49fd5f2e..cef0af6b 100644 --- a/Northstar.CustomServers/mod/scripts/vscripts/gamemodes/_gamemode_speedball.nut +++ b/Northstar.CustomServers/mod/scripts/vscripts/gamemodes/_gamemode_speedball.nut @@ -86,6 +86,7 @@ void function GiveFlag( entity player ) void function DropFlagIfPhased( entity player ) { player.EndSignal( "StartPhaseShift" ) + player.EndSignal( "OnDestroy" ) OnThreadEnd( function() : ( player ) { |