From 4e528da5c283fa00367b809a3010268fee970dfe Mon Sep 17 00:00:00 2001 From: r4d6 Date: Sat, 4 Jan 2020 19:06:56 -0500 Subject: [PATCH] Correct price and rpd --- code/game/objects/items/RCD.dm | 1 + code/modules/research/designs/misc_designs.dm | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/code/game/objects/items/RCD.dm b/code/game/objects/items/RCD.dm index b4f0f1459a..420f5467d8 100644 --- a/code/game/objects/items/RCD.dm +++ b/code/game/objects/items/RCD.dm @@ -599,6 +599,7 @@ RLD energyfactor = 66 /obj/item/construction/rcd/loaded + materials = list(MAT_METAL=48000, MAT_GLASS=32000) matter = 160 /obj/item/construction/rcd/loaded/upgraded diff --git a/code/modules/research/designs/misc_designs.dm b/code/modules/research/designs/misc_designs.dm index a49dd76ede..198f06ed3f 100644 --- a/code/modules/research/designs/misc_designs.dm +++ b/code/modules/research/designs/misc_designs.dm @@ -434,7 +434,7 @@ desc = "A tool that can construct and deconstruct walls, airlocks and floors on the fly." id = "rcd_loaded" build_type = PROTOLATHE - materials = list(MAT_METAL = 60000, MAT_GLASS = 5000) // costs more than what it did in the autolathe, this one comes loaded. + materials = list(MAT_METAL = MINERAL_MATERIAL_AMOUNT, MAT_GLASS = MINERAL_MATERIAL_AMOUNT) // costs more than what it did in the autolathe, this one comes loaded. build_path = /obj/item/construction/rcd/loaded category = list("Equipment") departmental_flags = DEPARTMENTAL_FLAG_ENGINEERING @@ -445,7 +445,7 @@ id = "rpd" build_type = PROTOLATHE materials = list(MAT_METAL = 75000, MAT_GLASS = 37500) - build_path = /obj/item/construction/rcd/loaded + build_path = /obj/item/pipe_dispenser category = list("Equipment") departmental_flags = DEPARTMENTAL_FLAG_ENGINEERING