From fc781c86e315b1e8c484b63723461d67f5d16580 Mon Sep 17 00:00:00 2001 From: FlamingLily <80451102+FlamingLily@users.noreply.github.com> Date: Tue, 27 Jul 2021 01:07:16 +1000 Subject: [PATCH] [NON-MODULAR] Gives borgs the crew manifest NTOS app (#7134) --- .../modular_computers/computers/item/tablet_presets.dm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/code/modules/modular_computers/computers/item/tablet_presets.dm b/code/modules/modular_computers/computers/item/tablet_presets.dm index 3e246cf24de..ecbdaf76006 100644 --- a/code/modules/modular_computers/computers/item/tablet_presets.dm +++ b/code/modules/modular_computers/computers/item/tablet_presets.dm @@ -104,7 +104,9 @@ //Borg Built-in tablet /obj/item/modular_computer/tablet/integrated/Initialize() . = ..() + var/obj/item/computer_hardware/hard_drive/small/integrated/hard_drive = new // SKYRAT EDIT ADD install_component(new /obj/item/computer_hardware/processor_unit/small) - install_component(new /obj/item/computer_hardware/hard_drive/small/integrated) + install_component(hard_drive) // SKYRAT EDIT -- ORIGINAL install_component(new /obj/item/computer_hardware/hard_drive/small/integrated/) install_component(new /obj/item/computer_hardware/recharger/cyborg) install_component(new /obj/item/computer_hardware/network_card/integrated) + hard_drive.store_file(/datum/computer_file/program/crew_manifest) // SKYRAT EDIT ADD