From 36a759ecfc2807ce07386245135dc1f3db8d37e2 Mon Sep 17 00:00:00 2001 From: archbtw <230859540+archbtw0@users.noreply.github.com> Date: Tue, 30 Dec 2025 02:35:04 +0000 Subject: [PATCH] Banana spellcheck (#94642) ## About The Pull Request Duplicate 'the' ## Why It's Good For The Game Closes https://github.com/tgstation/tgstation/issues/94586 ## Changelog :cl: spellcheck: Fix a duplicate 'the' /:cl: Co-authored-by: glue0000 <230859540+glue0000@users.noreply.github.com> --- code/datums/elements/food/food_trash.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/elements/food/food_trash.dm b/code/datums/elements/food/food_trash.dm index 47dbdefef1d..d6667e41e30 100644 --- a/code/datums/elements/food/food_trash.dm +++ b/code/datums/elements/food/food_trash.dm @@ -88,7 +88,7 @@ /datum/element/food_trash/proc/open_trash(datum/source, mob/user) SIGNAL_HANDLER - to_chat(user, span_notice("You open the [source], revealing \a [initial(trash.name)].")) + to_chat(user, span_notice("You open \the [source], revealing \a [initial(trash.name)].")) INVOKE_ASYNC(src, PROC_REF(async_generate_trash), source) qdel(source)