aboutsummaryrefslogtreecommitdiff
path: root/Northstar.CustomServers/mod/scripts/vscripts/mp/_gamestate_mp.nut
diff options
context:
space:
mode:
authorBobTheBob <32057864+BobTheBob9@users.noreply.github.com>2022-01-25 18:43:23 +0000
committerBobTheBob <32057864+BobTheBob9@users.noreply.github.com>2022-01-25 18:43:23 +0000
commite3021b7339c9632777f1be1dbc045d18327085f2 (patch)
tree69a8e42cca36e48410e7d17a6e0b85f875808b0f /Northstar.CustomServers/mod/scripts/vscripts/mp/_gamestate_mp.nut
parent54cd96aed5b20912f60983bb5e77e67c261f32d8 (diff)
downloadNorthstarMods-e3021b7339c9632777f1be1dbc045d18327085f2.tar.gz
NorthstarMods-e3021b7339c9632777f1be1dbc045d18327085f2.zip
bring classic_mp 0 behaviour inline with official servers
Diffstat (limited to 'Northstar.CustomServers/mod/scripts/vscripts/mp/_gamestate_mp.nut')
-rw-r--r--Northstar.CustomServers/mod/scripts/vscripts/mp/_gamestate_mp.nut4
1 files changed, 2 insertions, 2 deletions
diff --git a/Northstar.CustomServers/mod/scripts/vscripts/mp/_gamestate_mp.nut b/Northstar.CustomServers/mod/scripts/vscripts/mp/_gamestate_mp.nut
index e5c8799dd..ddf8cd8d2 100644
--- a/Northstar.CustomServers/mod/scripts/vscripts/mp/_gamestate_mp.nut
+++ b/Northstar.CustomServers/mod/scripts/vscripts/mp/_gamestate_mp.nut
@@ -97,7 +97,7 @@ void function SetGameState( int newState )
void function GameState_EntitiesDidLoad()
{
- if ( GetClassicMPMode() )
+ if ( GetClassicMPMode() || ClassicMP_ShouldTryIntroAndEpilogueWithoutClassicMP() )
ClassicMP_SetupIntro()
}
@@ -180,7 +180,7 @@ void function GameStateEnter_Prematch()
SetServerVar( "gameEndTime", Time() + timeLimit + ClassicMP_GetIntroLength() )
SetServerVar( "roundEndTime", Time() + ClassicMP_GetIntroLength() + GameMode_GetRoundTimeLimit( GAMETYPE ) * 60 )
- if ( !GetClassicMPMode() )
+ if ( !GetClassicMPMode() && !ClassicMP_ShouldTryIntroAndEpilogueWithoutClassicMP() )
thread StartGameWithoutClassicMP()
}