mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 18:53:06 +00:00
Hides syndi-synths from the manifest (#5411)
* Manifest doesn't show the same stationbound cyborgs and AIs that the upload consoles don't show * Manifest doesn't show borgs with scrambedcodes set
This commit is contained in:
@@ -84,10 +84,8 @@
|
|||||||
|
|
||||||
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.module && robot.module.hide_on_manifest)
|
if(!robot.scrambledcodes && !(robot.module && robot.module.hide_on_manifest))
|
||||||
continue
|
bot[robot.name] = "[robot.modtype] [robot.braintype]"
|
||||||
|
|
||||||
bot[robot.name] = "[robot.modtype] [robot.braintype]"
|
|
||||||
|
|
||||||
|
|
||||||
if(heads.len > 0)
|
if(heads.len > 0)
|
||||||
|
|||||||
@@ -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.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")
|
||||||
|
|||||||
Reference in New Issue
Block a user