Sanitizing text twice breaks quotes

Someone didn't read the comment in text.dm helpers, I see. This text is sanitized 2 lines above. Don't do it twice, nothing changed.

Fixes https://github.com/VOREStation/VOREStation/issues/276

(Do cross-repo magic-word closes work? _We're about to find out!_)
This commit is contained in:
Arokha Sieyes
2016-06-02 14:12:48 -04:00
parent a95b47174e
commit 63bf71e393

View File

@@ -107,7 +107,7 @@ datum/preferences/proc/set_biological_gender(var/gender)
else if(href_list["metadata"])
var/new_metadata = sanitize(input(user, "Enter any information you'd like others to see, such as Roleplay-preferences:", "Game Preference" , pref.metadata)) as message|null
if(new_metadata && CanUseTopic(user))
pref.metadata = sanitize(new_metadata)
pref.metadata = new_metadata
return TOPIC_REFRESH
return ..()