diff --git a/code/game/objects/structures/stool_bed_chair_nest/chairs_vr.dm b/code/game/objects/structures/stool_bed_chair_nest/chairs_vr.dm index e82ef467bb..751f031907 100644 --- a/code/game/objects/structures/stool_bed_chair_nest/chairs_vr.dm +++ b/code/game/objects/structures/stool_bed_chair_nest/chairs_vr.dm @@ -1,6 +1,7 @@ /obj/structure/bed/chair/sofa name = "sofa" desc = "A padded, comfy sofa. Great for lazing on." + icon = 'icons/obj/furniture_ch.dmi' //CHOMPEDIT: Improving on the sofas by making them visually change with padding base_icon = "sofamiddle" /obj/structure/bed/chair/sofa/left diff --git a/code/modules/materials/material_recipes_ch.dm b/code/modules/materials/material_recipes_ch.dm index d4e830b043..26b6c93ba3 100644 --- a/code/modules/materials/material_recipes_ch.dm +++ b/code/modules/materials/material_recipes_ch.dm @@ -6,8 +6,8 @@ /material/wood/generate_recipes() //Is a little sad we cant have lovely wooden sofa . = ..() recipes += new/datum/stack_recipe_list("sofas", list( \ - new/datum/stack_recipe("sofa middle", /obj/structure/bed/chair/sofa, 1, one_per_turf = 1, on_floor = 1), \ - new/datum/stack_recipe("sofa left", /obj/structure/bed/chair/sofa/left, 1, one_per_turf = 1, on_floor = 1), \ - new/datum/stack_recipe("sofa right", /obj/structure/bed/chair/sofa/right, 1, one_per_turf = 1, on_floor = 1), \ - new/datum/stack_recipe("sofa corner", /obj/structure/bed/chair/sofa/corner, 1, one_per_turf = 1, on_floor = 1), \ + new/datum/stack_recipe("sofa middle", /obj/structure/bed/chair/sofa, 1, one_per_turf = 1, on_floor = 1, supplied_material = "[name]"), \ + new/datum/stack_recipe("sofa left", /obj/structure/bed/chair/sofa/left, 1, one_per_turf = 1, on_floor = 1, supplied_material = "[name]"), \ + new/datum/stack_recipe("sofa right", /obj/structure/bed/chair/sofa/right, 1, one_per_turf = 1, on_floor = 1, supplied_material = "[name]"), \ + new/datum/stack_recipe("sofa corner", /obj/structure/bed/chair/sofa/corner, 1, one_per_turf = 1, on_floor = 1, supplied_material = "[name]"), \ )) \ No newline at end of file diff --git a/icons/obj/furniture_ch.dmi b/icons/obj/furniture_ch.dmi index bdae917c13..f013a520c4 100644 Binary files a/icons/obj/furniture_ch.dmi and b/icons/obj/furniture_ch.dmi differ