makes emote input text boxes larger

This commit is contained in:
deathride58
2018-02-08 21:47:29 -05:00
parent bf33dadc0b
commit 832ac9a64a
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -411,7 +411,7 @@
to_chat(user, "You cannot send IC messages (muted).")
return FALSE
else if(!params)
var/custom_emote = copytext(sanitize(input("Choose an emote to display.") as text|null), 1, MAX_MESSAGE_LEN)
var/custom_emote = copytext(sanitize(input("Choose an emote to display.") as message|null), 1, MAX_MESSAGE_LEN) //CIT CHANGE - expands emote textbox
if(custom_emote && !check_invalid(user, custom_emote))
var/type = input("Is this a visible or hearable emote?") as null|anything in list("Visible", "Hearable")
switch(type)