mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-25 14:08:31 +01:00
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user