mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-12 16:44:43 +01:00
fuck you buraurteactic error (#14467)
This commit is contained in:
@@ -12,6 +12,7 @@
|
||||
|
||||
/datum/round_event/bureaucratic_error/start()
|
||||
var/list/jobs = SSjob.joinable_occupations.Copy()
|
||||
/*
|
||||
if(prob(33)) // Only allows latejoining as a single role. Add latejoin AI bluespace pods for fun later.
|
||||
var/datum/job/overflow = pick_n_take(jobs)
|
||||
overflow.spawn_positions = -1
|
||||
@@ -22,8 +23,9 @@
|
||||
continue
|
||||
current.total_positions = 0
|
||||
else // Adds/removes a random amount of job slots from all jobs.
|
||||
for(var/datum/job/current as anything in jobs)
|
||||
if(!current.allow_bureaucratic_error)
|
||||
continue
|
||||
var/ran = rand(-2,4)
|
||||
current.total_positions = max(current.total_positions + ran, 0)
|
||||
*/ // SKYRAT EDIT REMOVAL - no more locking off jobs
|
||||
for(var/datum/job/current as anything in jobs)
|
||||
if(!current.allow_bureaucratic_error)
|
||||
continue
|
||||
var/ran = rand(1,4) // SKYRAT EDIT - no more locking off jobs
|
||||
current.total_positions = max(current.total_positions + ran, 0)
|
||||
|
||||
Reference in New Issue
Block a user