From 0cf3efcbc202ca099b0a5019e38c40886dbae8f1 Mon Sep 17 00:00:00 2001 From: PollardTheDragon <144391971+PollardTheDragon@users.noreply.github.com> Date: Wed, 24 Sep 2025 08:57:50 -0400 Subject: [PATCH] Makes smith bag craftable with leather (#30465) --- code/game/objects/items/stacks/sheets/leather.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/game/objects/items/stacks/sheets/leather.dm b/code/game/objects/items/stacks/sheets/leather.dm index 5a6c2864dc7..72feb45c8d2 100644 --- a/code/game/objects/items/stacks/sheets/leather.dm +++ b/code/game/objects/items/stacks/sheets/leather.dm @@ -143,6 +143,7 @@ GLOBAL_LIST_INIT(leather_recipes, list ( new /datum/stack_recipe("leather satchel", /obj/item/storage/backpack/satchel, 5), new /datum/stack_recipe("briefcase", /obj/item/storage/briefcase, 4), new /datum/stack_recipe("bandolier", /obj/item/storage/belt/bandolier, 5), + new /datum/stack_recipe("smith's bag", /obj/item/storage/bag/smith, 5), )), null, new /datum/stack_recipe("card box", /obj/item/deck/holder, 1),