diff --git a/code/game/machinery/autolathe_datums.dm b/code/game/machinery/autolathe_datums.dm index 8a7cbdc2022..69dc941d9ee 100644 --- a/code/game/machinery/autolathe_datums.dm +++ b/code/game/machinery/autolathe_datums.dm @@ -378,11 +378,6 @@ path = /obj/item/device/destTagger category = "General" -/datum/autolathe/recipe/steelwool - name = "steel wool" - path = /obj/item/steelwool - category = "Tools" - /datum/autolathe/recipe/debugger name = "debugger" path = /obj/item/device/debugger diff --git a/code/modules/materials/material_recipes.dm b/code/modules/materials/material_recipes.dm index 8e14566a0bc..d10088e7f2f 100644 --- a/code/modules/materials/material_recipes.dm +++ b/code/modules/materials/material_recipes.dm @@ -66,7 +66,8 @@ new /datum/stack_recipe("key", /obj/item/key, 1, time = 10, one_per_turf = 0, on_floor = 1), new /datum/stack_recipe("custodial cart", /obj/structure/janitorialcart, BUILD_AMT, time = 120, one_per_turf = 1, on_floor = 1), new /datum/stack_recipe("closet", /obj/structure/closet, BUILD_AMT, time = 15, one_per_turf = 1, on_floor = 1), - new /datum/stack_recipe("canister", /obj/machinery/portable_atmospherics/canister, 10, time = 15, one_per_turf = 1, on_floor = 1) + new /datum/stack_recipe("canister", /obj/machinery/portable_atmospherics/canister, 10, time = 15, one_per_turf = 1, on_floor = 1), + new /datum/stack_recipe("steel wool", /obj/item/steelwool, 1, time = 15, one_per_turf = 1, on_floor = 1) )) recipes += new /datum/stack_recipe_list("airlock assemblies", diff --git a/html/changelogs/hockaa-steelwooltweaks.yml b/html/changelogs/hockaa-steelwooltweaks.yml new file mode 100644 index 00000000000..079891f3a54 --- /dev/null +++ b/html/changelogs/hockaa-steelwooltweaks.yml @@ -0,0 +1,6 @@ +author: Hocka + +delete-after: True + +changes: + - tweak: "Steel wool is now made from a steel sheet under the miscellaneous construction category. They are no longer made in autolathes." \ No newline at end of file