From 7a92d69d13c1922ea2fa0dfebd66998ea3b4bc36 Mon Sep 17 00:00:00 2001 From: Zergspower Date: Fri, 27 May 2022 12:07:12 -0500 Subject: [PATCH] Fixes borg missing messenger app (#13861) * Fixes borg missing messenger app * Update code/modules/modular_computers/hardware/hard_drive.dm Co-authored-by: OrionTheFox <76465278+OrionTheFox@users.noreply.github.com> * Update code/modules/modular_computers/hardware/hard_drive.dm Co-authored-by: OrionTheFox <76465278+OrionTheFox@users.noreply.github.com> * Notations missed * Reverts unnecessary changes * beep3 Co-authored-by: OrionTheFox <76465278+OrionTheFox@users.noreply.github.com> --- code/modules/modular_computers/hardware/hard_drive.dm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/code/modules/modular_computers/hardware/hard_drive.dm b/code/modules/modular_computers/hardware/hard_drive.dm index 2e4ad4cc0f9..aa1005b7943 100644 --- a/code/modules/modular_computers/hardware/hard_drive.dm +++ b/code/modules/modular_computers/hardware/hard_drive.dm @@ -188,6 +188,11 @@ store_file(new /datum/computer_file/program/filemanager(src)) // File manager, allows text editor functions and basic file manipulation. store_file(new /datum/computer_file/program/robotact(src)) store_file(new /datum/computer_file/program/crew_manifest(src)) // SKYRAT EDIT ADDITION - Manifests for cyborgs + /* SKYRAT EDIT ADDITION Start- Returns Messenger to borgs */ + var/datum/computer_file/program/messenger/messenger = new(src) + messenger.is_silicon = TRUE + store_file(messenger) + /* SKYRAT EDIT ADDITION End- Returns Messenger to borgs */ // Syndicate variant - very slight better /obj/item/computer_hardware/hard_drive/portable/syndicate