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
This commit is contained in:
Verkister
2018-10-21 21:23:25 +03:00
committed by VirgoBot
parent 86cf5cfca7
commit acdbd65e22

View File

@@ -144,7 +144,7 @@ var/global/list/PDA_Manifest = list()
for(var/mob/living/silicon/robot/robot in mob_list) for(var/mob/living/silicon/robot/robot in mob_list)
// No combat/syndicate cyborgs, no drones. // 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 continue
bot[++bot.len] = list("name" = robot.real_name, "rank" = "[robot.modtype] [robot.braintype]", "active" = "Active") bot[++bot.len] = list("name" = robot.real_name, "rank" = "[robot.modtype] [robot.braintype]", "active" = "Active")