Adds One Single Space to Unlocking and Locking Closets (#75383)

## About The Pull Request
Title. I added one single space bar to the third-person display message
when you witness someone else lock or unlock a locker.

## Why It's Good For The Game
Before:
<img src="https://i.ibb.co/RCWTTcq/Closet-Space-Bar-Before.png">
After:
<img src="https://i.ibb.co/Wfm7hvR/Closet-Space-Bar-After.png">
Highlighting unrelated shoutout to my fellow based AI enjoyers.
Grammar is good.
## Changelog
No changelog necessary.
This commit is contained in:
Jackraxxus
2023-05-13 04:00:29 +00:00
committed by GitHub
parent 90a57a4d4c
commit bc1718df6e
@@ -1046,8 +1046,10 @@
if(iscarbon(user))
add_fingerprint(user)
locked = !locked
user.visible_message(span_notice("[user] [locked ? "locks" : "unlocks"][src]."),
span_notice("You [locked ? "locked" : "unlocked"] [src]."))
user.visible_message(
span_notice("[user] [locked ? "locks" : "unlocks"] [src]."),
span_notice("You [locked ? "locked" : "unlocked"] [src]."),
)
update_appearance()
/obj/structure/closet/emag_act(mob/user)