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

🆑
spellcheck: Minor grammar fix for extinguishers
/🆑
This commit is contained in:
Aliceee2ch
2025-10-20 23:10:48 +03:00
committed by GitHub
parent 097da00b5b
commit 9d0fe19b48
+2 -2
View File
@@ -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)