From 5d538fb4665e9e549f8204ae43798fbb0bf0c0b3 Mon Sep 17 00:00:00 2001 From: meow20 <62257265+meow20@users.noreply.github.com> Date: Sun, 1 Oct 2023 12:48:58 +0200 Subject: [PATCH] Syndicate bots no longer show up on security bot control PDA menu (#22602) * technically first commit * nt ed's now show up and linter check should pass. --- code/modules/pda/cart_apps.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/pda/cart_apps.dm b/code/modules/pda/cart_apps.dm index 2b80aa8f525..6e2da7c5af5 100644 --- a/code/modules/pda/cart_apps.dm +++ b/code/modules/pda/cart_apps.dm @@ -223,7 +223,8 @@ for(var/mob/living/simple_animal/bot/secbot/SB in GLOB.bots_list) bots += SB for(var/mob/living/simple_animal/bot/ed209/ED in GLOB.bots_list) - bots += ED + if(!("syndicate" in ED.faction)) + bots += ED for(var/mob/living/simple_animal/bot/B in bots) botsCount++