From eac372fff85168e9f7119a160d8dfb047b6a481b Mon Sep 17 00:00:00 2001 From: RandomMarine Date: Fri, 16 Jun 2017 18:29:47 -0700 Subject: [PATCH] Actually do what #22687 tried --- code/game/objects/items/weapons/RCD.dm | 1 + code/modules/cargo/exports/tools.dm | 4 ++-- code/modules/research/designs/autolathe_designs.dm | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/code/game/objects/items/weapons/RCD.dm b/code/game/objects/items/weapons/RCD.dm index 72b24e39f02..86c5ce99a89 100644 --- a/code/game/objects/items/weapons/RCD.dm +++ b/code/game/objects/items/weapons/RCD.dm @@ -401,6 +401,7 @@ obj/item/weapon/construction icon_state = "rcd" item_state = "rcdammo" origin_tech = "materials=3" + w_class = WEIGHT_CLASS_TINY materials = list(MAT_METAL=12000, MAT_GLASS=8000) var/ammoamt = 40 diff --git a/code/modules/cargo/exports/tools.dm b/code/modules/cargo/exports/tools.dm index 683f2c08cc0..8dcf68a9f0e 100644 --- a/code/modules/cargo/exports/tools.dm +++ b/code/modules/cargo/exports/tools.dm @@ -108,9 +108,9 @@ export_types = list(/obj/item/weapon/construction/rcd) /datum/export/rcd_ammo - cost = 15 // 1.5 metal, 1 glass -> 12.5 credits, +2.5 credits + cost = 60 // 6 metal, 4 glass -> 50 credits, +10 credits unit_name = "compressed matter cardridge" - export_types = list(/datum/design/rcd_ammo) + export_types = list(/obj/item/weapon/rcd_ammo) /datum/export/rpd cost = 350 // 37.5 metal, 18.75 glass -> 281.25 credits, + some diff --git a/code/modules/research/designs/autolathe_designs.dm b/code/modules/research/designs/autolathe_designs.dm index dbe9e372e46..283c94fd483 100644 --- a/code/modules/research/designs/autolathe_designs.dm +++ b/code/modules/research/designs/autolathe_designs.dm @@ -235,7 +235,7 @@ name = "Compressed Matter Cartridge" id = "rcd_ammo" build_type = AUTOLATHE - materials = list(MAT_METAL = 3000, MAT_GLASS=2000) + materials = list(MAT_METAL = 12000, MAT_GLASS=8000) build_path = /obj/item/weapon/rcd_ammo category = list("initial","Construction")