From 9d0fe19b48ea5fd39c988706eaed4ec8f5828b16 Mon Sep 17 00:00:00 2001 From: Aliceee2ch <160794176+Aliceee2ch@users.noreply.github.com> Date: Mon, 20 Oct 2025 23:10:48 +0300 Subject: [PATCH] Minor grammar fix for extinguishers (#93530) ## About The Pull Request You must be holding the the pocket fire extinguisher in your hands do this! ## Why It's Good For The Game idk ## Changelog :cl: spellcheck: Minor grammar fix for extinguishers /:cl: --- code/game/objects/items/extinguisher.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/objects/items/extinguisher.dm b/code/game/objects/items/extinguisher.dm index 02be4ea277f..4102728d4f0 100644 --- a/code/game/objects/items/extinguisher.dm +++ b/code/game/objects/items/extinguisher.dm @@ -358,7 +358,7 @@ /obj/item/extinguisher/click_alt(mob/user) if(!user.is_holding(src)) - to_chat(user, span_notice("You must be holding the [src] in your hands do this!")) + to_chat(user, span_notice("You must be holding [src] in your hands to do this!")) return CLICK_ACTION_BLOCKING EmptyExtinguisher(user) return CLICK_ACTION_SUCCESS @@ -367,7 +367,7 @@ if(loc == user && reagents.total_volume) reagents.expose(user.loc, TOUCH) reagents.clear_reagents() - user.visible_message(span_notice("[user] empties out \the [src] onto the floor using the release valve."), span_info("You quietly empty out \the [src] using its release valve.")) + user.visible_message(span_notice("[user] empties out [src] onto the floor using the release valve."), span_info("You quietly empty out [src] using its release valve.")) //firebot assembly /obj/item/extinguisher/attackby(obj/O, mob/user, list/modifiers, list/attack_modifiers)