From 7f9305f23c1dfdaf839446a45f1e61b2db4081eb Mon Sep 17 00:00:00 2001 From: Charlie Nolan Date: Thu, 30 Jan 2025 04:54:21 -0800 Subject: [PATCH] Re-bonk reagents on kitchen appliances (#28185) --- .../food_and_drinks/kitchen_machinery/kitchen_machine.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/food_and_drinks/kitchen_machinery/kitchen_machine.dm b/code/modules/food_and_drinks/kitchen_machinery/kitchen_machine.dm index a49197a4bc3..0d5a3c8e2a6 100644 --- a/code/modules/food_and_drinks/kitchen_machinery/kitchen_machine.dm +++ b/code/modules/food_and_drinks/kitchen_machinery/kitchen_machine.dm @@ -123,7 +123,7 @@ if(!(R.id in GLOB.cooking_reagents[recipe_type])) to_chat(user, "Your [used.name] contains components unsuitable for cookery.") return ITEM_INTERACT_COMPLETE - return ITEM_INTERACT_COMPLETE + return ..() else if(istype(used, /obj/item/storage)) var/obj/item/storage/S = used if(!S.allow_quick_empty)