Bug fix subtle

Subtle would spit out a number instead of your actual text, this is fixed.
This commit is contained in:
QuoteFox
2021-01-09 15:03:34 +00:00
parent 56320224ba
commit c60a23ec15
+1 -1
View File
@@ -65,7 +65,7 @@ proc/get_top_level_mob(var/mob/S)
to_chat(user, "You cannot send IC messages (muted).")
return FALSE
else if(!params)
var/subtle_emote = stripped_multiline_input("Choose an emote to display.", "Subtle", null, MAX_MESSAGE_LEN)
var/subtle_emote = stripped_multiline_input(user, "Choose an emote to display.", "Subtle" , null, MAX_MESSAGE_LEN)
if(subtle_emote && !check_invalid(user, subtle_emote))
var/type = input("Is this a visible or hearable emote?") as null|anything in list("Visible", "Hearable")
switch(type)