From 2b414da0cd1211bd25bacb11839db3eaefc0b2ea Mon Sep 17 00:00:00 2001 From: ShiftyRail <31417754+ShiftyRail@users.noreply.github.com> Date: Thu, 18 Jun 2020 13:25:30 +0200 Subject: [PATCH] Make runechat saved prefs load properly (#26885) --- code/modules/client/preferences_savefile.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/modules/client/preferences_savefile.dm b/code/modules/client/preferences_savefile.dm index 8cf1806685c..0803c3c9fcf 100644 --- a/code/modules/client/preferences_savefile.dm +++ b/code/modules/client/preferences_savefile.dm @@ -107,6 +107,10 @@ window_flashing = text2num(preference_list_client["window_flashing"]) antag_objectives = text2num(preference_list_client["antag_objectives"]) typing_indicator = text2num(preference_list_client["typing_indicator"]) + mob_chat_on_map = text2num(preference_list_client["mob_chat_on_map"]) + max_chat_length = text2num(preference_list_client["max_chat_length"]) + obj_chat_on_map = text2num(preference_list_client["obj_chat_on_map"]) + no_goonchat_for_obj = text2num(preference_list_client["no_goonchat_for_obj"]) ooccolor = sanitize_hexcolor(ooccolor, initial(ooccolor)) lastchangelog = sanitize_text(lastchangelog, initial(lastchangelog))