From 624bfbb4bc9ea3b97ac6411c834c5be9a40a6b9f Mon Sep 17 00:00:00 2001 From: SierraKomodo <11140088+SierraKomodo@users.noreply.github.com> Date: Sun, 7 Jan 2024 22:23:06 +0300 Subject: [PATCH] [MIRROR] Allow unlimited passenger slots --- code/game/jobs/job/job.dm | 4 ++-- maps/torch/job/misc_jobs.dm | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/code/game/jobs/job/job.dm b/code/game/jobs/job/job.dm index 3057a3675b968..09ef39dbb7262 100644 --- a/code/game/jobs/job/job.dm +++ b/code/game/jobs/job/job.dm @@ -5,8 +5,8 @@ var/list/access = list() // The job's default access tokens var/list/software_on_spawn = list() // Defines the software files that spawn on tablets and labtops var/department_flag = 0 - var/total_positions = 0 // How many players can be this job - var/spawn_positions = 0 // How many players can spawn in as this job + var/total_positions = 0 // How many players can be this job. Set to -1 for unlimited. + var/spawn_positions = 0 // How many players can spawn in as this job. Set to -1 for unlimited. var/current_positions = 0 // How many players have this job var/availablity_chance = 100 // Percentage chance job is available each round diff --git a/maps/torch/job/misc_jobs.dm b/maps/torch/job/misc_jobs.dm index c146549426ff2..4cef89f23441a 100644 --- a/maps/torch/job/misc_jobs.dm +++ b/maps/torch/job/misc_jobs.dm @@ -25,8 +25,8 @@ Civilian /datum/job/assistant title = "Passenger" - total_positions = 12 - spawn_positions = 12 + total_positions = -1 + spawn_positions = -1 supervisors = "the Executive Officer" economic_power = 6 announced = FALSE