Removes Cyborg's PDA app (#66921)

Removes Cyborg's PDA
This commit is contained in:
John Willard
2022-05-21 10:36:46 -04:00
committed by GitHub
parent ef955d441a
commit ca9bef008a
2 changed files with 5 additions and 8 deletions
+3 -3
View File
@@ -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)
@@ -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