Skip to content

Commit

Permalink
[MIRROR] Allow unlimited passenger slots
Browse files Browse the repository at this point in the history
  • Loading branch information
SierraKomodo authored and SierraHelper committed Jan 7, 2024
1 parent a7b0e91 commit 624bfbb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
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

0 comments on commit 624bfbb

Please sign in to comment.