From ca9bef008a869976550ca8dcad9f6ada67a134cd Mon Sep 17 00:00:00 2001 From: John Willard <53777086+JohnFulpWillard@users.noreply.github.com> Date: Sat, 21 May 2022 10:36:46 -0400 Subject: [PATCH] Removes Cyborg's PDA app (#66921) Removes Cyborg's PDA --- code/modules/mob/living/silicon/silicon.dm | 6 +++--- code/modules/modular_computers/hardware/hard_drive.dm | 7 ++----- 2 files changed, 5 insertions(+), 8 deletions(-) diff --git a/code/modules/mob/living/silicon/silicon.dm b/code/modules/mob/living/silicon/silicon.dm index 7fb997bf33d..8d1a2d78de6 100644 --- a/code/modules/mob/living/silicon/silicon.dm +++ b/code/modules/mob/living/silicon/silicon.dm @@ -85,13 +85,13 @@ modularInterface.saved_identification = real_name || name if(istype(src, /mob/living/silicon/robot)) modularInterface.saved_job = "Cyborg" - modularInterface.install_component(new /obj/item/computer_hardware/hard_drive/small/integrated/borg) + modularInterface.install_component(new /obj/item/computer_hardware/hard_drive/small/robot) if(istype(src, /mob/living/silicon/ai)) modularInterface.saved_job = "AI" - modularInterface.install_component(new /obj/item/computer_hardware/hard_drive/small/integrated) + modularInterface.install_component(new /obj/item/computer_hardware/hard_drive/small/ai) if(istype(src, /mob/living/silicon/pai)) modularInterface.saved_job = "pAI Messenger" - modularInterface.install_component(new /obj/item/computer_hardware/hard_drive/small/integrated) + modularInterface.install_component(new /obj/item/computer_hardware/hard_drive/small/ai) /mob/living/silicon/robot/model/syndicate/create_modularInterface() if(!modularInterface) diff --git a/code/modules/modular_computers/hardware/hard_drive.dm b/code/modules/modular_computers/hardware/hard_drive.dm index d9a8db720f2..8a3b547e8ca 100644 --- a/code/modules/modular_computers/hardware/hard_drive.dm +++ b/code/modules/modular_computers/hardware/hard_drive.dm @@ -177,18 +177,15 @@ store_file(new /datum/computer_file/program/notepad(src)) // For borg integrated tablets. No downloader. -/obj/item/computer_hardware/hard_drive/small/integrated/install_default_programs() +/obj/item/computer_hardware/hard_drive/small/ai/install_default_programs() var/datum/computer_file/program/messenger/messenger = new(src) messenger.is_silicon = TRUE store_file(messenger) -/obj/item/computer_hardware/hard_drive/small/integrated/borg/install_default_programs() +/obj/item/computer_hardware/hard_drive/small/robot/install_default_programs() store_file(new /datum/computer_file/program/computerconfig(src)) // Computer configuration utility, allows hardware control and displays more info than status bar 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)) - var/datum/computer_file/program/messenger/messenger = new(src) - messenger.is_silicon = TRUE - store_file(messenger) // Syndicate variant - very slight better /obj/item/computer_hardware/hard_drive/portable/syndicate