Skip to content

Commit

Permalink
properly bypasses CItest deadlock
Browse files Browse the repository at this point in the history
  • Loading branch information
TheLordME committed Oct 25, 2024
1 parent a4089b7 commit 12d1a57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/controllers/subsystem/ticker.dm
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ SUBSYSTEM_DEF(ticker)
return
timeLeft -= wait
if(timeLeft <= 0)
if((how_many_players_have_readied_up() > 0) && (!citest))
if((how_many_players_have_readied_up() > 0) || (citest))
current_state = GAME_STATE_SETTING_UP
Master.SetRunLevel(RUNLEVEL_SETUP)
if(start_immediately)
Expand Down

0 comments on commit 12d1a57

Please sign in to comment.