From b579dcc9c88db3581966865cd2ee8d5b4b6dc4b8 Mon Sep 17 00:00:00 2001 From: Ghom <42542238+Ghommie@users.noreply.github.com> Date: Wed, 5 Mar 2025 14:25:33 +0100 Subject: [PATCH] Follower hoodies can now be crafted (#89685) ## About The Pull Request Little band-aid atomized from my WIP refactor. As you can see from the code comments, it's not a definitive solution, but I can't handle it properly right now because I have so muh beef on the plate. ## Why It's Good For The Game Fixing stuff that no one cares about, yay... ## Changelog :cl: fix: Follower hoodies can now be crafted. /:cl: --- code/datums/components/crafting/tailoring.dm | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/code/datums/components/crafting/tailoring.dm b/code/datums/components/crafting/tailoring.dm index 45c021aca6c..050c7af0239 100644 --- a/code/datums/components/crafting/tailoring.dm +++ b/code/datums/components/crafting/tailoring.dm @@ -418,6 +418,12 @@ reqs = list(/obj/item/stack/sheet/cloth = 4) category = CAT_CLOTHING +/datum/crafting_recipe/chaplain_hood/New() + . = ..() + //the resulting hoodie can be used to craft other hoodies. + //recipe blacklists should be refactored to only affect components and not tools. + blacklist -= result + /datum/crafting_recipe/flower_garland name = "Flower Garland" result = /obj/item/clothing/head/costume/garland