From fd63d61526b807c2860f733e6a459249a87f53e2 Mon Sep 17 00:00:00 2001 From: PollardTheDragon <144391971+PollardTheDragon@users.noreply.github.com> Date: Thu, 18 Dec 2025 04:22:53 -0500 Subject: [PATCH] Fixes attaching bits to smithed knives (#31235) Signed-off-by: PollardTheDragon <144391971+PollardTheDragon@users.noreply.github.com> --- code/modules/smithing/smithed_items/knives.dm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/code/modules/smithing/smithed_items/knives.dm b/code/modules/smithing/smithed_items/knives.dm index 5835981f48b..0e9d55c239b 100644 --- a/code/modules/smithing/smithed_items/knives.dm +++ b/code/modules/smithing/smithed_items/knives.dm @@ -92,9 +92,8 @@ update_icon(UPDATE_OVERLAYS) /obj/item/kitchen/knife/smithed/item_interaction(mob/living/user, obj/item/used, list/modifiers) - . = ..() if(!isstack(used)) - return ITEM_INTERACT_COMPLETE + return ..() var/obj/item/stack/stacked_item = used if(wrap_type) to_chat(user, SPAN_WARNING("There is already a wrap on [src]!")) @@ -114,7 +113,7 @@ wrap_to_attach = /datum/handle_wrapping/mothsilk if(!wrap_to_attach) to_chat(user, SPAN_WARNING("You cannot wrap [stacked_item] around [src]!")) - return ITEM_INTERACT_COMPLETE + return ..() if(do_after_once(user, 5 SECONDS, target = src)) if(stacked_item.use(5)) attach_wrapping(wrap_to_attach)