From c8e12ffb4d76f38793cec177b344394f83bba638 Mon Sep 17 00:00:00 2001 From: ZomgPonies Date: Mon, 30 Dec 2013 12:21:41 -0500 Subject: [PATCH] Assistant limiter tweak --- code/modules/mob/new_player/new_player.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/mob/new_player/new_player.dm b/code/modules/mob/new_player/new_player.dm index 4305680d71d..b2e76fa8f90 100644 --- a/code/modules/mob/new_player/new_player.dm +++ b/code/modules/mob/new_player/new_player.dm @@ -284,6 +284,8 @@ var/datum/job/hos = job_master.GetJob("Head of Security") count += (officer.current_positions + warden.current_positions + hos.current_positions) if(job.current_positions > (config.assistantratio * count)) + if(count >= 5) // if theres more than 5 security on the station just let assistants join regardless, they should be able to handle the tide + return 1 return 0 return 1