Fixes some extraneous spacing in some messages (#26222)

* clears a bunch of spaces

* oopsie daisy

* Update code/modules/food_and_drinks/food/customizables.dm

Co-authored-by: Ryan <80364400+Sirryan2002@users.noreply.github.com>
Signed-off-by: Luc <89928798+lewcc@users.noreply.github.com>

---------

Signed-off-by: Luc <89928798+lewcc@users.noreply.github.com>
Co-authored-by: Ryan <80364400+Sirryan2002@users.noreply.github.com>
This commit is contained in:
Luc
2024-07-20 00:15:21 +00:00
committed by GitHub
co-authored by Ryan
parent 6392082157
commit cb4d709c78
27 changed files with 191 additions and 191 deletions
@@ -69,17 +69,17 @@
if(LAZYIN(trigger_emotes, emote_key) && !on_implant)
if(!silent)
to_chat(user, "<span class='warning'> You've already registered [emote_key]!")
to_chat(user, "<span class='warning'>You've already registered [emote_key]!")
return FALSE
if(emote_key == "me" || emote_key == "custom")
if(!silent)
to_chat(user, "<span class='warning'> You can't trigger [src] with a custom emote.")
to_chat(user, "<span class='warning'>You can't trigger [src] with a custom emote.")
return FALSE
if(!(emote_key in user.usable_emote_keys(trigger_causes & BIOCHIP_EMOTE_TRIGGER_INTENTIONAL)))
if(!silent)
to_chat(user, "<span class='warning'> You can't trigger [src] with that emote! Try *help to see emotes you can use.</span>")
to_chat(user, "<span class='warning'>You can't trigger [src] with that emote! Try *help to see emotes you can use.</span>")
return FALSE
if(!(emote_key in user.usable_emote_keys(trigger_causes & BIOCHIP_EMOTE_TRIGGER_UNINTENTIONAL)))