From b2ddb404df07cee1341dd22ef45b817fcd269806 Mon Sep 17 00:00:00 2001 From: Hockaa <69127651+Hockaa@users.noreply.github.com> Date: Thu, 26 Nov 2020 10:25:54 +0000 Subject: [PATCH] Tweaks steel wool (#10629) --- code/game/machinery/autolathe_datums.dm | 5 ----- code/modules/materials/material_recipes.dm | 3 ++- html/changelogs/hockaa-steelwooltweaks.yml | 6 ++++++ 3 files changed, 8 insertions(+), 6 deletions(-) create mode 100644 html/changelogs/hockaa-steelwooltweaks.yml 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