From 8108c009a440f0d1557ceddf3befa48b06b45965 Mon Sep 17 00:00:00 2001 From: ShizCalev Date: Wed, 14 Sep 2022 10:47:24 -0400 Subject: [PATCH] Slightly rewords customizable reagent holder examine message (#69880) --- code/datums/components/customizable_reagent_holder.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/components/customizable_reagent_holder.dm b/code/datums/components/customizable_reagent_holder.dm index a6ffadea6ab..55f6dfa71fd 100644 --- a/code/datums/components/customizable_reagent_holder.dm +++ b/code/datums/components/customizable_reagent_holder.dm @@ -96,7 +96,7 @@ if (i == ingredients.len - 1) ending = ", and " ingredients_listed += "\a [ingredient.name][ending]" - examine_list += "It contains [LAZYLEN(ingredients) ? "[ingredients_listed]" : " no ingredients, "]making a [custom_adjective()]-sized [initial(atom_parent.name)]." + examine_list += "It [LAZYLEN(ingredients) ? "contains [ingredients_listed]making a [custom_adjective()]-sized [initial(atom_parent.name)]" : "does not contain any ingredients"]." ///Handles when the customizable food is attacked by something.