Fix various issues with names in string interpolation (#89246)

## About The Pull Request
Commit messages should be descriptive of all changes.
The "incorrect `\The` macro capitalization" was intentional when it was
added, but as far as I know TG says "the supermatter" rather than "The
Supermatter," so it's incorrect now.
This is completely untested. I don't even know how you'd go about
testing this, it's just a fuckton of strings.
Someday I want to extract them and run NLP on it to catch grammar
problems...

## Why It's Good For The Game
Basic grammar pass for name strings. Should make `\the` work better and
avoid cases like `the John Smith`.
This commit is contained in:
Penelope Haze
2025-01-29 11:46:03 -05:00
committed by GitHub
parent 76a58e71b9
commit d0a7f955f8
85 changed files with 125 additions and 125 deletions

View File

@@ -64,7 +64,7 @@
for(var/obj/item/stored_item as anything in stored_items)
throw_target = pick(oview(range))
stored_item.throw_at(throw_target, range, 2)
to_chat(owner, span_warning("Your [owner.get_held_index_name(owner.get_held_index_of_item(stored_item))] spasms and throws the [stored_item.name]!"))
to_chat(owner, span_warning("Your [owner.get_held_index_name(owner.get_held_index_of_item(stored_item))] spasms and throws \the [stored_item]!"))
stored_items = list()