Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MIRROR] Allow unlimited passenger slots #1780

Merged
merged 1 commit into from
Jan 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions code/game/jobs/job/job.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions maps/torch/job/misc_jobs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down