From f4daa8edd769463f3c1f6a9bece43a2c81371ecd Mon Sep 17 00:00:00 2001 From: PollardTheDragon <144391971+PollardTheDragon@users.noreply.github.com> Date: Tue, 3 Feb 2026 19:11:37 -0500 Subject: [PATCH] Fixes single-product smithing cast descriptions (#31495) --- code/modules/smithing/smithing_cast.dm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/code/modules/smithing/smithing_cast.dm b/code/modules/smithing/smithing_cast.dm index 7c2601d3880..30f95d02fb5 100644 --- a/code/modules/smithing/smithing_cast.dm +++ b/code/modules/smithing/smithing_cast.dm @@ -21,8 +21,9 @@ /obj/item/smithing_cast/examine(mob/user) . = ..() - . += "It is currently configured to make [amount_to_make == 1 ? "a" : "[amount_to_make]"] [selected_product.name][amount_to_make == 1 ? "" : "s"]." - . += SPAN_NOTICE("You can select the desired product by using [src] in your hand.") + if(length(possible_products) > 1) + . += "It is currently configured to make [amount_to_make == 1 ? "a" : "[amount_to_make]"] [selected_product.name][amount_to_make == 1 ? "" : "s"]." + . += SPAN_NOTICE("You can select the desired product by using [src] in your hand.") /obj/item/smithing_cast/activate_self(mob/user) . = ..()