From 4defc980b75768c712c4a78d67c1e2677bb1f04e Mon Sep 17 00:00:00 2001 From: Heroman3003 <31296024+Heroman3003@users.noreply.github.com> Date: Thu, 19 Sep 2019 11:38:51 +1000 Subject: [PATCH] Moves data crystal recipies to protolathe properly --- code/modules/modular_computers/hardware/portable_hard_drive.dm | 2 +- code/modules/research/designs/modular_computer.dm | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/code/modules/modular_computers/hardware/portable_hard_drive.dm b/code/modules/modular_computers/hardware/portable_hard_drive.dm index 9a0feb3653..817fca789e 100644 --- a/code/modules/modular_computers/hardware/portable_hard_drive.dm +++ b/code/modules/modular_computers/hardware/portable_hard_drive.dm @@ -1,5 +1,5 @@ // These are basically USB data sticks and may be used to transfer files between devices -/obj/item/weapon/computer_hardware/hard_drive/portable/ +/obj/item/weapon/computer_hardware/hard_drive/portable name = "basic data crystal" desc = "Small crystal with imprinted photonic circuits that can be used to store data. Its capacity is 16 GQ." power_usage = 10 diff --git a/code/modules/research/designs/modular_computer.dm b/code/modules/research/designs/modular_computer.dm index c148ffb994..cc1f737af1 100644 --- a/code/modules/research/designs/modular_computer.dm +++ b/code/modules/research/designs/modular_computer.dm @@ -221,7 +221,6 @@ name = "basic data crystal" id = "portadrive_basic" req_tech = list(TECH_DATA = 1) - build_type = IMPRINTER materials = list("glass" = 8000) build_path = /obj/item/weapon/computer_hardware/hard_drive/portable sort_string = "VFAAA" @@ -230,7 +229,6 @@ name = "advanced data crystal" id = "portadrive_advanced" req_tech = list(TECH_DATA = 2) - build_type = IMPRINTER materials = list("glass" = 16000) build_path = /obj/item/weapon/computer_hardware/hard_drive/portable/advanced sort_string = "VFAAB" @@ -239,7 +237,6 @@ name = "super data crystal" id = "portadrive_super" req_tech = list(TECH_DATA = 4) - build_type = IMPRINTER materials = list("glass" = 32000) build_path = /obj/item/weapon/computer_hardware/hard_drive/portable/super sort_string = "VFAAC"