Skip to content

Commit

Permalink
[MIRROR] Mechs now use proper name when renamed (#798)
Browse files Browse the repository at this point in the history
* Mechs now use proper name when renamed (#81309)

## About The Pull Request

When you rename a mech, it now becomes a proper name.

## Why It's Good For The Game

People give their guns people names, and in my experience people also
give mechs people names, it would be cool if they were referred to
'thing' instead of 'the thing', to encourage that.

## Changelog

:cl:
spellcheck: Mechs that have been renamed now are proper names, so are
not described as 'the' mech.
/:cl:

* Mechs now use proper name when renamed

---------

Co-authored-by: John Willard <[email protected]>
  • Loading branch information
2 people authored and FFMirrorBot committed Feb 7, 2024
1 parent 1730d73 commit f5c2d30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/modules/vehicles/mecha/mecha_ui.dm
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@
if(userinput == format_text(name)) //default mecha names may have improper span artefacts in their name, so we format the name
to_chat(usr, span_notice("You rename [name] to... well, [userinput]."))
return
name = userinput
name = "\proper [userinput]"
chassis_camera?.update_c_tag(src)
if("toggle_safety")
set_safety(usr)
Expand Down

0 comments on commit f5c2d30

Please sign in to comment.