Skip to content

Commit

Permalink
unit test compat
Browse files Browse the repository at this point in the history
no longer gets stuck on unit tests
  • Loading branch information
Doubleumc committed Jul 29, 2024
1 parent f1df071 commit edbce2a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions code/controllers/subsystem/ticker.dm
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,11 @@ SUBSYSTEM_DEF(ticker)
var/list/login_music = null //Music played in pregame lobby

var/delay_end = FALSE //If set true, the round will not restart on it's own
#if defined(UNIT_TESTS) //must be FALSE for unit tests else they hang indefinitely
var/delay_start = FALSE
#else
var/delay_start = TRUE
#endif
var/admin_delay_notice = "" //A message to display to anyone who tries to restart the world after a delay

var/time_left //Pre-game timer
Expand Down

0 comments on commit edbce2a

Please sign in to comment.