Fix Ambition Box (#8874)

This commit is contained in:
William Lemon
2020-05-15 13:58:46 -03:00
committed by GitHub
parent 4d008e1643
commit 0b296ee7a4
3 changed files with 6 additions and 2 deletions
+1 -1
View File
@@ -217,7 +217,7 @@
memory = new_memo
else if (href_list["amb_edit"])
var/new_ambition = input("Enter a new ambition", "Memory",src.ambitions) as null|message
var/new_ambition = input("Enter a new ambition", "Memory",html_decode(src.ambitions)) as null|message
if(isnull(new_ambition))
return
src.ambitions = sanitize(new_ambition)
@@ -42,7 +42,7 @@
return
var/new_ambitions = input(src, "Write a short sentence of what your character hopes to accomplish \
today as an antagonist. Remember that this is purely optional. It will be shown at the end of the \
round for everybody else.", "Ambitions", mind.ambitions) as null|message
round for everybody else.", "Ambitions", html_decode(mind.ambitions)) as null|message
if(isnull(new_ambitions))
return
new_ambitions = sanitize(new_ambitions)