1
0
mirror of https://github.com/JezuzLizard/BO2-Reimagined.git synced 2025-07-02 18:10:26 -05:00

Encounter: fix players not spawning during pregame

This commit is contained in:
Jbleezy
2023-04-22 21:42:02 -07:00
parent 44bda67fa8
commit 45302c9d47
4 changed files with 17 additions and 10 deletions

View File

@ -610,6 +610,8 @@ fade_out_intro_screen_zm( hold_black_time, fade_out_time, destroyed_afterwards )
if ( destroyed_afterwards == 1 )
level.introscreen destroy();
level.match_started = 1;
flag_set( "initial_blackscreen_passed" );
}

View File

@ -174,7 +174,7 @@ onplayerspawned()
hide_gump_loading_for_hotjoiners()
{
if(isDefined(level.is_respawn_gamemode_func) && [[level.is_respawn_gamemode_func]]())
if(isDefined(level.should_respawn_func) && [[level.should_respawn_func]]())
{
return;
}

View File

@ -4,7 +4,7 @@
game_mode_spawn_player_logic()
{
if(isDefined(level.is_respawn_gamemode_func) && [[level.is_respawn_gamemode_func]]())
if(isDefined(level.should_respawn_func) && [[level.should_respawn_func]]())
{
return 0;
}