Fixes material amount (#22954)

This commit is contained in:
XDTM
2017-01-11 19:51:13 -05:00
committed by KorPhaeron
parent 12fe4ad8e2
commit 64e4994fea
2 changed files with 2 additions and 2 deletions
@@ -282,7 +282,7 @@ var/global/list/datum/stack_recipe/titanium_recipes = list ( \
throw_range = 3
origin_tech = "materials=4"
sheettype = "plastitanium"
materials = list(MAT_TITANIUM=6000, MAT_PLASMA=6000)
materials = list(MAT_TITANIUM=2000, MAT_PLASMA=2000)
var/global/list/datum/stack_recipe/plastitanium_recipes = list ( \
new/datum/stack_recipe("plas-titanium tile", /obj/item/stack/tile/mineral/plastitanium, 1, 4, 20), \
@@ -102,7 +102,7 @@ var/global/list/datum/stack_recipe/plasteel_recipes = list ( \
desc = "This sheet is an alloy of iron and plasma."
icon_state = "sheet-plasteel"
item_state = "sheet-metal"
materials = list(MAT_METAL=6000, MAT_PLASMA=6000)
materials = list(MAT_METAL=2000, MAT_PLASMA=2000)
throwforce = 10
flags = CONDUCT
origin_tech = "materials=2"