diff --git a/code/game/objects/items/stacks/stack.dm b/code/game/objects/items/stacks/stack.dm index e55569b23e8..b6b3021a08e 100644 --- a/code/game/objects/items/stacks/stack.dm +++ b/code/game/objects/items/stacks/stack.dm @@ -31,7 +31,10 @@ /obj/item/stack/examine(mob/user) if(..(user, 1)) - to_chat(user, "There are [amount] [singular_name]\s in the stack.") + if(singular_name) + to_chat(user, "There are [amount] [singular_name]\s in the stack.") + else + to_chat(user, "There are [amount] [name]\s in the stack.") /obj/item/stack/attack_self(mob/user) list_recipes(user)