From dfcdf5866e6b7b04ad900f61d02b28b3e766e8a8 Mon Sep 17 00:00:00 2001 From: AndrewJacksonThe2nd Date: Fri, 2 Sep 2016 15:37:14 -0700 Subject: [PATCH] fixes --- .../research/designs/comp_board_designs.dm | 2 +- .../research/designs/computer_part_designs.dm | 20 +++++++++---------- .../research/designs/weapon_designs.dm | 4 ++-- 3 files changed, 13 insertions(+), 13 deletions(-) diff --git a/code/modules/research/designs/comp_board_designs.dm b/code/modules/research/designs/comp_board_designs.dm index 60b921056de..ac400b4780a 100644 --- a/code/modules/research/designs/comp_board_designs.dm +++ b/code/modules/research/designs/comp_board_designs.dm @@ -7,7 +7,7 @@ req_tech = list("programming" = 1) build_type = IMPRINTER materials = list(MAT_GLASS = 1000) - reagents = list("sacid" = 20) + reagents_list = list("sacid" = 20) build_path = /obj/item/weapon/circuitboard/computer/arcade/battle category = list("Computer Boards") diff --git a/code/modules/research/designs/computer_part_designs.dm b/code/modules/research/designs/computer_part_designs.dm index dc6c69ad461..cd7452d6f10 100644 --- a/code/modules/research/designs/computer_part_designs.dm +++ b/code/modules/research/designs/computer_part_designs.dm @@ -64,7 +64,7 @@ req_tech = list("programming" = 2, "engineering" = 1) build_type = IMPRINTER materials = list(MAT_METAL = 250, MAT_GLASS = 100) - reagents = list("sacid" = 20) + reagents_list = list("sacid" = 20) build_path = /obj/item/weapon/computer_hardware/network_card category = list("Computer Parts") @@ -74,7 +74,7 @@ req_tech = list("programming" = 4, "engineering" = 2) build_type = IMPRINTER materials = list(MAT_METAL = 500, MAT_GLASS = 200) - reagents = list("sacid" = 20) + reagents_list = list("sacid" = 20) build_path = /obj/item/weapon/computer_hardware/network_card/advanced category = list("Computer Parts") @@ -84,7 +84,7 @@ req_tech = list("programming" = 5, "engineering" = 3) build_type = IMPRINTER materials = list(MAT_METAL = 2500, MAT_GLASS = 400) - reagents = list("sacid" = 20) + reagents_list = list("sacid" = 20) build_path = /obj/item/weapon/computer_hardware/network_card/wired category = list("Computer Parts") @@ -96,7 +96,7 @@ req_tech = list("programming" = 1) build_type = IMPRINTER materials = list(MAT_GLASS = 800) - reagents = list("sacid" = 20) + reagents_list = list("sacid" = 20) build_path = /obj/item/weapon/computer_hardware/hard_drive/portable category = list("Computer Parts") @@ -106,7 +106,7 @@ req_tech = list("programming" = 2) build_type = IMPRINTER materials = list(MAT_GLASS = 1600) - reagents = list("sacid" = 20) + reagents_list = list("sacid" = 20) build_path = /obj/item/weapon/computer_hardware/hard_drive/portable/advanced category = list("Computer Parts") @@ -116,7 +116,7 @@ req_tech = list("programming" = 4) build_type = IMPRINTER materials = list(MAT_GLASS = 3200) - reagents = list("sacid" = 20) + reagents_list = list("sacid" = 20) build_path = /obj/item/weapon/computer_hardware/hard_drive/portable/super category = list("Computer Parts") @@ -216,7 +216,7 @@ req_tech = list("programming" = 3, "engineering" = 2) build_type = IMPRINTER materials = list(MAT_GLASS = 1600) - reagents = list("sacid" = 20) + reagents_list = list("sacid" = 20) build_path = /obj/item/weapon/computer_hardware/processor_unit category = list("Computer Parts") @@ -226,7 +226,7 @@ req_tech = list("programming" = 2, "engineering" = 2) build_type = IMPRINTER materials = list(MAT_GLASS = 800) - reagents = list("sacid" = 20) + reagents_list = list("sacid" = 20) build_path = /obj/item/weapon/computer_hardware/processor_unit/small category = list("Computer Parts") @@ -236,7 +236,7 @@ req_tech = list("programming" = 5, "engineering" = 4) build_type = IMPRINTER materials = list(MAT_GLASS= 6400, MAT_GOLD = 2000) - reagents = list("sacid" = 40) + reagents_list = list("sacid" = 40) build_path = /obj/item/weapon/computer_hardware/processor_unit/photonic category = list("Computer Parts") @@ -246,6 +246,6 @@ req_tech = list("programming" = 4, "engineering" = 3) build_type = IMPRINTER materials = list(MAT_GLASS = 3200, MAT_GOLD = 1000) - reagents = list("sacid" = 20) + reagents_list = list("sacid" = 20) build_path = /obj/item/weapon/computer_hardware/processor_unit/photonic/small category = list("Computer Parts") \ No newline at end of file diff --git a/code/modules/research/designs/weapon_designs.dm b/code/modules/research/designs/weapon_designs.dm index 36ade8b17ca..05fcc6cde92 100644 --- a/code/modules/research/designs/weapon_designs.dm +++ b/code/modules/research/designs/weapon_designs.dm @@ -69,7 +69,7 @@ req_tech = list("combat" = 5, "materials" = 5, "biotech" = 6, "plasmatech" = 7) build_type = PROTOLATHE materials = list(MAT_GOLD = 5000,MAT_URANIUM = 10000) - reagents = list("mutagen" = 40) + reagents_list = list("mutagen" = 40) build_path = /obj/item/weapon/gun/energy/decloner category = list("Weapons") @@ -110,7 +110,7 @@ req_tech = list("materials" = 2, "biotech" = 4) build_type = PROTOLATHE materials = list(MAT_METAL = 2000, MAT_GLASS = 500) - reagents = list("radium" = 20) + reagents_list = list("radium" = 20) build_path = /obj/item/weapon/gun/energy/floragun category = list("Weapons")