diff --git a/code/modules/admin/verbs/adminpm.dm b/code/modules/admin/verbs/adminpm.dm index 4dbc2a2307..c250eb8c4a 100644 --- a/code/modules/admin/verbs/adminpm.dm +++ b/code/modules/admin/verbs/adminpm.dm @@ -57,7 +57,7 @@ if(AH) message_admins("[key_name_admin(src)] has started replying to [key_name(C, 0, 0)]'s admin help.") - var/msg = tgui_input_text(src,"Message:", "Private message to [key_name(C, 0, 0)]") + var/msg = tgui_input_text(src,"Message:", "Private message to [key_name(C, 0, 0)]", multiline = TRUE) if (!msg) message_admins("[key_name_admin(src)] has cancelled their reply to [key_name(C, 0, 0)]'s admin help.") return @@ -92,7 +92,7 @@ if(!ircreplyamount) //to prevent people from spamming irc return if(!msg) - msg = tgui_input_text(src,"Message:", "Private message to Administrator") + msg = tgui_input_text(src,"Message:", "Private message to Administrator", multiline = TRUE) if(!msg) return @@ -112,7 +112,7 @@ //get message text, limit it's length.and clean/escape html if(!msg) - msg = tgui_input_text(src,"Message:", "Private message to [key_name(recipient, 0, 0)]") + msg = tgui_input_text(src,"Message:", "Private message to [key_name(recipient, 0, 0)]", multiline = TRUE) if(!msg) return @@ -188,7 +188,7 @@ spawn() //so we don't hold the caller proc up var/sender = src var/sendername = key - var/reply = tgui_input_text(recipient, msg,"Admin PM from-[sendername]", "") //show message and await a reply + var/reply = tgui_input_text(recipient, msg,"Admin PM from-[sendername]", "", multiline = TRUE) //show message and await a reply if(recipient && reply) if(sender) recipient.cmd_admin_pm(sender,reply) //sender is still about, let's reply to them @@ -285,4 +285,4 @@ GLOB.stealthminID["IRCKEY"] = stealth return stealth -#undef IRCREPLYCOUNT \ No newline at end of file +#undef IRCREPLYCOUNT diff --git a/code/modules/mentor/mentor.dm b/code/modules/mentor/mentor.dm index 28f4225485..e28202745e 100644 --- a/code/modules/mentor/mentor.dm +++ b/code/modules/mentor/mentor.dm @@ -150,7 +150,7 @@ var/list/mentor_verbs_default = list( if(MH) message_mentors("[src] has started replying to [C]'s mentor help.") - var/msg = tgui_input_text(src,"Message:", "Private message to [C]") + var/msg = tgui_input_text(src,"Message:", "Private message to [C]", multiline = TRUE) if (!msg) message_mentors("[src] has cancelled their reply to [C]'s mentor help.") return @@ -168,7 +168,7 @@ var/list/mentor_verbs_default = list( set hidden = 1 var/mhelp = tgui_alert(usr, "Select the help you need.","Request for Help",list("Adminhelp","Mentorhelp")) == "Mentorhelp" - var/msg = tgui_input_text(usr, "Input your request for help.", "Request for Help") + var/msg = tgui_input_text(usr, "Input your request for help.", "Request for Help", multiline = TRUE) if (mhelp) mentorhelp(msg) @@ -202,7 +202,7 @@ var/list/mentor_verbs_default = list( //get message text, limit it's length.and clean/escape html if(!msg) - msg = tgui_input_text(src,"Message:", "Mentor-PM to [whom]") + msg = tgui_input_text(src,"Message:", "Mentor-PM to [whom]", multiline = TRUE) if(!msg) return @@ -260,4 +260,4 @@ var/list/mentor_verbs_default = list( to_chat(C, interaction_message) for(var/client/C in GLOB.admins) if (C != recipient && C != src) - to_chat(C, interaction_message) \ No newline at end of file + to_chat(C, interaction_message)