From 75c872ccd65c4564a6baf3b1ce1a048555ff8fe6 Mon Sep 17 00:00:00 2001 From: Verkister Date: Sun, 21 Oct 2018 21:23:25 +0300 Subject: [PATCH] Fixes PDA manifest excluding all non-syndie borgs (#5695) * Fixes PDA manifest excluding all non-syndie borgs I'm preetty sure the original PR had the opposite intention of what it actually did. * Update obj.dm * Update obj.dm --- code/defines/obj.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/defines/obj.dm b/code/defines/obj.dm index f2cec96aab..3b36f5099e 100644 --- a/code/defines/obj.dm +++ b/code/defines/obj.dm @@ -144,7 +144,7 @@ var/global/list/PDA_Manifest = list() for(var/mob/living/silicon/robot/robot in mob_list) // No combat/syndicate cyborgs, no drones. - if(!robot.scrambledcodes && !(robot.module && robot.module.hide_on_manifest)) + if(robot.scrambledcodes || (robot.module && robot.module.hide_on_manifest)) continue bot[++bot.len] = list("name" = robot.real_name, "rank" = "[robot.modtype] [robot.braintype]", "active" = "Active")