From 8bb32e00fab1306219a3c3bee5ba59a9f85e351f Mon Sep 17 00:00:00 2001 From: GinjaNinja32 Date: Mon, 16 Jun 2014 21:32:58 +0100 Subject: [PATCH] Fixes ID computer's missing Security section --- code/game/machinery/computer/card.dm | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/code/game/machinery/computer/card.dm b/code/game/machinery/computer/card.dm index fcf525cc36..8c86629de3 100644 --- a/code/game/machinery/computer/card.dm +++ b/code/game/machinery/computer/card.dm @@ -115,6 +115,15 @@ jobs_all += "Captain" jobs_all += "Custom" + counter = 0 + jobs_all += "Security"//Red + for(var/job in security_positions) + counter++ + if(counter >= 6) + jobs_all += "" + counter = 0 + jobs_all += "[replacetext(job, " ", " ")]" + counter = 0 jobs_all += "Engineering"//Orange for(var/job in engineering_positions)