From 489063ba73205e191d5e76d70a060224cde8c19e Mon Sep 17 00:00:00 2001 From: CRUNCH <143041327+CRUNCH-Borg@users.noreply.github.com> Date: Sun, 25 Jan 2026 08:21:02 +0000 Subject: [PATCH] Allows the Recycler to Recycle Wood (#31442) * Update recycler.dm * Update material_container.dm * Update code/game/machinery/recycler.dm Co-authored-by: Contrabang <91113370+Contrabang@users.noreply.github.com> Signed-off-by: CRUNCH <143041327+CRUNCH-Borg@users.noreply.github.com> --------- Signed-off-by: CRUNCH <143041327+CRUNCH-Borg@users.noreply.github.com> Co-authored-by: Contrabang <91113370+Contrabang@users.noreply.github.com> --- code/datums/components/material_container.dm | 5 +++++ code/game/machinery/recycler.dm | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) 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)