From a586e16d81f4e6c80535a37d585eacb0b99a1f23 Mon Sep 17 00:00:00 2001 From: Marm <85680653+ItsMarmite@users.noreply.github.com> Date: Fri, 15 Sep 2023 01:50:21 +0100 Subject: [PATCH] Prevents Quartermaster job slots from being raised. (#22377) * misery if you will Blacklists QM job slots from being raised. * Update code/game/machinery/computer/card.dm --------- Co-authored-by: DGamerL <108773801+DGamerL@users.noreply.github.com> --- code/game/machinery/computer/card.dm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/code/game/machinery/computer/card.dm b/code/game/machinery/computer/card.dm index f593d6c9c40..425ca4ef9e5 100644 --- a/code/game/machinery/computer/card.dm +++ b/code/game/machinery/computer/card.dm @@ -49,8 +49,10 @@ GLOBAL_VAR_INIT(time_last_changed_position, 0) /datum/job/blueshield, /datum/job/nanotrasenrep, /datum/job/chaplain, - /datum/job/officer - ) + /datum/job/officer, + /datum/job/qm +) + //The scaling factor of max total positions in relation to the total amount of people on board the station in % var/max_relative_positions = 30 //30%: Seems reasonable, limit of 6 @ 20 players