diff --git a/code/modules/hydroponics/biogenerator.dm b/code/modules/hydroponics/biogenerator.dm index c94e0ad32ed..e1eb9769667 100644 --- a/code/modules/hydroponics/biogenerator.dm +++ b/code/modules/hydroponics/biogenerator.dm @@ -15,7 +15,7 @@ var/productivity = 0 var/max_items = 40 var/datum/techweb/stored_research - var/list/show_categories = list("Food", "Botany Chemicals", "Leather and Cloth") + var/list/show_categories = list("Food", "Botany Chemicals", "Organic Materials") var/list/timesFiveCategories = list("Food", "Botany Chemicals") /obj/machinery/biogenerator/Initialize() diff --git a/code/modules/research/designs/biogenerator_designs.dm b/code/modules/research/designs/biogenerator_designs.dm index b2d02e9d04c..e2d5652a35d 100644 --- a/code/modules/research/designs/biogenerator_designs.dm +++ b/code/modules/research/designs/biogenerator_designs.dm @@ -113,7 +113,15 @@ build_type = BIOGENERATOR materials = list(MAT_BIOMASS = 50) build_path = /obj/item/stack/sheet/cloth - category = list("initial","Leather and Cloth") + category = list("initial","Organic Materials") + +/datum/design/cardboard + name = "Sheet of Cardboard" + id = "cardboard" + build_type = BIOGENERATOR + materials = list(MAT_BIOMASS = 25) + build_path = /obj/item/stack/sheet/cardboard + category = list("initial","Organic Materials") /datum/design/leather name = "Sheet of Leather" @@ -121,7 +129,7 @@ build_type = BIOGENERATOR materials = list(MAT_BIOMASS = 150) build_path = /obj/item/stack/sheet/leather - category = list("initial","Leather and Cloth") + category = list("initial","Organic Materials") /datum/design/secbelt name = "Security Belt"