Adds configs for hijack population minimums (#31206)

* add config for hijack pop lock

* woopsie daisy

* doth this please you, your lintliness?

* nerd emoji

* address DGL's most beauteous code review
This commit is contained in:
Pooble
2025-12-29 08:49:45 -05:00
committed by GitHub
parent 00eb823fe6
commit 8e79d6c089
10 changed files with 88 additions and 6 deletions
+7
View File
@@ -276,6 +276,13 @@ SUBSYSTEM_DEF(ticker)
// Behold, a rough way of figuring out what takes 10 years
var/watch = start_watch()
// Count ready players before we spawn them for hijack objective requirements
GLOB.roundstart_ready_players = 0
for(var/mob/new_player/player in GLOB.new_player_mobs)
if(player.ready && player.client)
GLOB.roundstart_ready_players++
create_characters() // Create player characters and transfer clients
log_debug("Creating characters took [stop_watch(watch)]s")