diff --git a/code/game/machinery/computer/message.dm b/code/game/machinery/computer/message.dm index a21b4bdc344..164edd55dfa 100644 --- a/code/game/machinery/computer/message.dm +++ b/code/game/machinery/computer/message.dm @@ -60,6 +60,15 @@ ..() return +/obj/machinery/computer/message_monitor/power_change() + ..() + if(stat & (NOPOWER|BROKEN)) + return + if(emag || hacking) + icon_state = hack_icon + else + icon_state = normal_icon + /obj/machinery/computer/message_monitor/process() //Is the server isn't linked to a server, and there's a server available, default it to the first one in the list. if(!linkedServer) @@ -180,15 +189,15 @@ dat += {" + - "} - //Sender - Recepient - Message - //Al Green - Your Mom - WHAT UP!? + //Sender - Sender's Job - Recepient - Message + //Al Green- Your Dad - Your Mom - WHAT UP!? dat += {" - + "} dat += "
SenderSender's Job RecipientRecepient Job Message
[customsender][customrecepient ? customrecepient.owner : "NONE"] [customjob][customrecepient ? customrecepient.owner : "NONE"] [custommessage]

Send" diff --git a/code/modules/paperwork/paper.dm b/code/modules/paperwork/paper.dm index 8d0b6fb83a0..ed17140de4a 100644 --- a/code/modules/paperwork/paper.dm +++ b/code/modules/paperwork/paper.dm @@ -184,6 +184,8 @@ t = "[t]" + t = dd_replacetext(t, "#", "") // Junk converted to nothing! + //Count the fields var/laststart = 1 while(1) @@ -224,8 +226,8 @@ if(href_list["write"]) var/id = href_list["write"] - var/t = strip_html_simple(input(usr, "What text do you wish to add to " + (id=="end" ? "the end of the paper" : "field "+id) + "?", "[name]", null),8192) as text - + //var/t = strip_html_simple(input(usr, "What text do you wish to add to " + (id=="end" ? "the end of the paper" : "field "+id) + "?", "[name]", null),8192) as message + var/t = strip_html_simple(input("Enter what you want to write:", "Write", null, null) as message, MAX_MESSAGE_LEN) var/obj/item/i = usr.equipped() // Check to see if he still got that darn pen, also check if he's using a crayon or pen. var/iscrayon = 0 if(!istype(i, /obj/item/weapon/pen))