diff options
author | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2021-12-24 20:05:14 +0000 |
---|---|---|
committer | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2021-12-24 20:05:14 +0000 |
commit | c15073a49a6f7814deef65f9d935289468914cb1 (patch) | |
tree | f7bb63a4dfc48dcf981f8366296f2e6af093bb66 /Northstar.CustomServers/mod/scripts/vscripts/mp | |
parent | aafffda44116b7ac7911dc65826e391c61b458cd (diff) | |
download | NorthstarMods-c15073a49a6f7814deef65f9d935289468914cb1.tar.gz NorthstarMods-c15073a49a6f7814deef65f9d935289468914cb1.zip |
fix grace period being allowed in titans
Diffstat (limited to 'Northstar.CustomServers/mod/scripts/vscripts/mp')
-rw-r--r-- | Northstar.CustomServers/mod/scripts/vscripts/mp/_gamestate_mp.nut | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Northstar.CustomServers/mod/scripts/vscripts/mp/_gamestate_mp.nut b/Northstar.CustomServers/mod/scripts/vscripts/mp/_gamestate_mp.nut index 4b90b1a2..562f65e5 100644 --- a/Northstar.CustomServers/mod/scripts/vscripts/mp/_gamestate_mp.nut +++ b/Northstar.CustomServers/mod/scripts/vscripts/mp/_gamestate_mp.nut @@ -80,6 +80,9 @@ void function PIN_GameStart() void function SetGameState( int newState ) { + if ( newState == GetGameState() ) + return + SetServerVar( "gameStateChangeTime", Time() ) SetServerVar( "gameState", newState ) svGlobal.levelEnt.Signal( "GameStateChanged" ) |