From d086200259e3ad24bd31ba7c9ea48ec64a29b899 Mon Sep 17 00:00:00 2001 From: zxaber <37497534+zxaber@users.noreply.github.com> Date: Thu, 24 Oct 2024 07:56:46 -0700 Subject: [PATCH] Using SiliConnect to send a message to a cyborg now includes the sender's job (#87341) ## About The Pull Request Does as title says. Doesn't take effect if the ID has no job listed. ## Why It's Good For The Game Gives a bit more context about who is sending a message. ## Changelog :cl: add: Borgs now get the job title of someone sending them a message through SiliConnect. /:cl: --- .../modular_computers/file_system/programs/borg_monitor.dm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/code/modules/modular_computers/file_system/programs/borg_monitor.dm b/code/modules/modular_computers/file_system/programs/borg_monitor.dm index 90213963e3e..0f919727205 100644 --- a/code/modules/modular_computers/file_system/programs/borg_monitor.dm +++ b/code/modules/modular_computers/file_system/programs/borg_monitor.dm @@ -161,7 +161,9 @@ if(computer.obj_flags & EMAGGED) return "STDERR:UNDF" return FALSE - return ID.registered_name + . = "[ID.registered_name]" + if(ID.assignment) + . = "[.], [ID.assignment]" /datum/computer_file/program/borg_monitor/syndicate filename = "roboverlord"