From 413187da2c03c8acbdf02065c13e5d0dcedee045 Mon Sep 17 00:00:00 2001 From: Tom <8881105+tf-4@users.noreply.github.com> Date: Thu, 23 Jun 2022 22:33:02 +0100 Subject: [PATCH] fuck you buraurteactic error (#14467) --- code/modules/events/bureaucratic_error.dm | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/code/modules/events/bureaucratic_error.dm b/code/modules/events/bureaucratic_error.dm index f46775fc102..b99feb0f428 100644 --- a/code/modules/events/bureaucratic_error.dm +++ b/code/modules/events/bureaucratic_error.dm @@ -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)