From d85563367ee7bcecdcd4fd9f9b92779df433ed18 Mon Sep 17 00:00:00 2001 From: Ghom <42542238+Ghommie@users.noreply.github.com> Date: Thu, 27 Feb 2020 12:39:01 +0100 Subject: [PATCH] Whoopsie --- code/modules/client/preferences.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index cc52cfd123..cdc3fbc5b9 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -1474,7 +1474,7 @@ GLOBAL_LIST_EMPTY(preferences_datums) if("flavor_text") var/msg = stripped_multiline_input(usr, "Set the flavor text in your 'examine' verb. This can also be used for OOC notes and preferences!", "Flavor Text", features["flavor_text"], MAX_FAVOR_LEN, TRUE) - if(!isnull(new_flavor)) + if(!isnull(msg)) features["flavor_text"] = html_decode(msg) if("hair")