From 604770a5579c8d2d3f96d9f63785d993e5b09710 Mon Sep 17 00:00:00 2001 From: Leshana Date: Tue, 31 May 2016 20:38:07 -0400 Subject: [PATCH] Fixes a bad material discovered by the new unit test! * "mutagen" is a reagent, not a material; it goes in the chemicals list. --- code/modules/research/designs.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/research/designs.dm b/code/modules/research/designs.dm index 92ba8432744..b7e779fd34d 100644 --- a/code/modules/research/designs.dm +++ b/code/modules/research/designs.dm @@ -510,7 +510,8 @@ other types of metals and chemistry for reagents). /datum/design/item/weapon/decloner id = "decloner" req_tech = list(TECH_COMBAT = 8, TECH_MATERIAL = 7, TECH_BIO = 5, TECH_POWER = 6) - materials = list("gold" = 5000,"uranium" = 10000, "mutagen" = 40) + materials = list("gold" = 5000,"uranium" = 10000) + chemicals = list("mutagen" = 40) build_path = /obj/item/weapon/gun/energy/decloner sort_string = "TAAAE"