mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-30 16:38:22 +01:00
Fix Ambition Box (#8874)
This commit is contained in:
+1
-1
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user