From 4de9e587e5d2beaabf7da496518d8eaea5ad3580 Mon Sep 17 00:00:00 2001 From: Skies-Of-Blue <86762641+Skies-Of-Blue@users.noreply.github.com> Date: Mon, 4 Mar 2024 12:56:56 -0800 Subject: [PATCH] Craftable Towels (#2798) ## About The Pull Request ![image](https://github.com/shiptest-ss13/Shiptest/assets/86762641/41710da6-0179-4c67-971c-670f0907e641) ## Why It's Good For The Game Crew shouldn't have to buy a sauna kit just for some towels. Players are now enabled to have a spontaneous beach episode, any time, anywhere! ## Changelog :cl: tweak: towels can now be crafted using two cloth /:cl: --- code/game/objects/items/stacks/sheets/sheet_types.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/game/objects/items/stacks/sheets/sheet_types.dm b/code/game/objects/items/stacks/sheets/sheet_types.dm index 00d793b6e1fb..4367861c7f79 100644 --- a/code/game/objects/items/stacks/sheets/sheet_types.dm +++ b/code/game/objects/items/stacks/sheets/sheet_types.dm @@ -348,6 +348,7 @@ GLOBAL_LIST_INIT(cloth_recipes, list ( \ null, \ new/datum/stack_recipe("improvised gauze", /obj/item/stack/medical/gauze/improvised, 1, 2, 6), \ new/datum/stack_recipe("rag", /obj/item/reagent_containers/glass/rag, 1), \ + new/datum/stack_recipe("towel", /obj/item/towel, 2), \ new/datum/stack_recipe("bedsheet", /obj/item/bedsheet, 3), \ new/datum/stack_recipe("empty sandbag", /obj/item/emptysandbag, 4), \ null, \