From 9583cd46fada25ca5dfc897ac2d418498acb35fc Mon Sep 17 00:00:00 2001 From: Verkister Date: Sun, 10 Sep 2023 10:48:24 +0300 Subject: [PATCH] Fixes cloth and fiber materials missing their sheet type definitions (#6945) --- code/modules/materials/materials/organic/cloth.dm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/code/modules/materials/materials/organic/cloth.dm b/code/modules/materials/materials/organic/cloth.dm index b05403a6ca..64b71d0fee 100644 --- a/code/modules/materials/materials/organic/cloth.dm +++ b/code/modules/materials/materials/organic/cloth.dm @@ -11,7 +11,8 @@ pass_stack_colors = TRUE supply_conversion_value = 2 hardness = 5 - + stack_type = /obj/item/stack/material/cloth //CHOMPEdit + /datum/material/cloth/generate_recipes() //Vorestation Add - adding some funny cool storage pouches to this so botany can do things other than food recipes = list( @@ -153,4 +154,5 @@ conductive = 0 pass_stack_colors = TRUE hardness = 5 - integrity = 5 + integrity = 5 + stack_type = /obj/item/stack/material/fiber //CHOMPEdit