Fix single quotes showing up weird in names and announcement titles (#12583)

This commit is contained in:
Tayyyyyyy
2019-10-13 20:21:39 -07:00
committed by variableundefined
parent 74682f469e
commit 42fe77ad8c
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -612,7 +612,7 @@ Traitors and the like can also be revived with the previous role mostly intact.
if(type == "Custom")
type = clean_input("What would you like the report type to be?", "Report Type", "Encrypted Transmission")
var/customname = clean_input("Pick a title for the report.", "Title", MsgType[type])
var/customname = input(usr, "Pick a title for the report.", "Title", MsgType[type]) as text|null
if(!customname)
return
var/input = input(usr, "Please enter anything you want. Anything. Serious.", "What's the message?") as message|null