diff --git a/code/datums/components/material_container.dm b/code/datums/components/material_container.dm index 9502b96d3a8..c9b94f28f4d 100644 --- a/code/datums/components/material_container.dm +++ b/code/datums/components/material_container.dm @@ -478,3 +478,8 @@ name = "Plastic" id = MAT_PLASTIC sheet_type = /obj/item/stack/sheet/plastic + +/datum/material/wood + name = "Wood" + id = MAT_WOOD + sheet_type = /obj/item/stack/sheet/wood diff --git a/code/game/machinery/recycler.dm b/code/game/machinery/recycler.dm index 5cd6ddcebaf..fbfeccf354d 100644 --- a/code/game/machinery/recycler.dm +++ b/code/game/machinery/recycler.dm @@ -25,7 +25,7 @@ /obj/machinery/recycler/Initialize(mapload) . = ..() - AddComponent(/datum/component/material_container, list(MAT_METAL, MAT_GLASS, MAT_PLASMA, MAT_SILVER, MAT_GOLD, MAT_DIAMOND, MAT_URANIUM, MAT_BANANIUM, MAT_TRANQUILLITE, MAT_TITANIUM, MAT_PLASTIC, MAT_BLUESPACE), 0, TRUE, null, null, null, TRUE) + AddComponent(/datum/component/material_container, list(MAT_METAL, MAT_GLASS, MAT_PLASMA, MAT_SILVER, MAT_GOLD, MAT_TITANIUM, MAT_URANIUM, MAT_DIAMOND, MAT_BLUESPACE, MAT_WOOD, MAT_PLASTIC, MAT_BANANIUM, MAT_TRANQUILLITE), 0, TRUE, null, null, null, TRUE) component_parts = list() component_parts += new /obj/item/circuitboard/recycler(null) component_parts += new /obj/item/stock_parts/matter_bin(null)