Removes double the when trying to write with an incorrect instrument (#92239)

## About The Pull Request

Closes #92229

## Changelog
🆑
spellcheck: Removed double the when trying to write with an incorrect
instrument
/🆑
This commit is contained in:
SmArtKar
2025-07-30 17:37:30 -04:00
committed by Roxy
parent 4f2b55d05c
commit 6b7d03ff81
+2 -2
View File
@@ -1354,7 +1354,7 @@
var/pen_info = writing_instrument.get_writing_implement_details()
if(!pen_info || (pen_info["interaction_mode"] != MODE_WRITING))
if(!silent_if_not_writing_tool)
to_chat(src, span_warning("You can't write with the [writing_instrument]!"))
to_chat(src, span_warning("You can't write with \the [writing_instrument]!"))
return FALSE
if(!is_literate())
@@ -1371,7 +1371,7 @@
var/obj/item/pen/pen = writing_instrument
if(istype(pen) && pen.requires_gravity)
to_chat(src, span_warning("You try to write, but the [writing_instrument] doesn't work in zero gravity!"))
to_chat(src, span_warning("You try to write, but \the [writing_instrument] doesn't work in zero gravity!"))
return FALSE
return TRUE