From 2da9270456676d662009a64e2625a7dbe33080c9 Mon Sep 17 00:00:00 2001 From: MymeType Date: Tue, 20 Jan 2026 21:34:41 +0100 Subject: [PATCH] Add missing commas to a couple of gibber messages (#31444) * Add missing comma * Add another missing comma --- code/modules/food_and_drinks/kitchen_machinery/gibber.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/food_and_drinks/kitchen_machinery/gibber.dm b/code/modules/food_and_drinks/kitchen_machinery/gibber.dm index 3de488069f5..19e3e04bd08 100644 --- a/code/modules/food_and_drinks/kitchen_machinery/gibber.dm +++ b/code/modules/food_and_drinks/kitchen_machinery/gibber.dm @@ -228,7 +228,7 @@ return if(!occupant) - visible_message(SPAN_DANGER("You hear a loud metallic grinding sound.")) + visible_message(SPAN_DANGER("You hear a loud, metallic grinding sound.")) return if(HAS_TRAIT(occupant, TRAIT_CLING_BURSTING)) @@ -236,7 +236,7 @@ return use_power(1000) - visible_message(SPAN_DANGER("You hear a loud squelchy grinding sound.")) + visible_message(SPAN_DANGER("You hear a loud, squelchy grinding sound.")) operating = TRUE update_icon(UPDATE_OVERLAYS | UPDATE_ICON_STATE)