diff --git a/code/game/objects/structures/stool_bed_chair_nest/bed.dm b/code/game/objects/structures/stool_bed_chair_nest/bed.dm index d1053079951..ace22e11ee9 100644 --- a/code/game/objects/structures/stool_bed_chair_nest/bed.dm +++ b/code/game/objects/structures/stool_bed_chair_nest/bed.dm @@ -190,6 +190,7 @@ icon = 'icons/obj/rollerbed.dmi' icon_state = "folded" w_class = WEIGHT_CLASS_BULKY + materials = list(MAT_METAL = 5000) new_attack_chain = TRUE var/extended = /obj/structure/bed/roller diff --git a/code/modules/research/designs/autolathe_designs.dm b/code/modules/research/designs/autolathe_designs.dm index 022b086dc9b..516b8aab2c8 100644 --- a/code/modules/research/designs/autolathe_designs.dm +++ b/code/modules/research/designs/autolathe_designs.dm @@ -544,6 +544,14 @@ build_path = /obj/item/storage/lockbox/vials category = list("initial", "Medical") +/datum/design/roller_bed + name = "Roller Bed" + id = "roller_bed" + build_type = AUTOLATHE + materials = list(MAT_METAL = 5000) + build_path = /obj/item/roller + category = list("initial", "Medical") + /datum/design/beanbag_slug name = "Beanbag Slug" id = "beanbag_slug"