From 69da27fe1053df6477e81428301d04e403db6ed0 Mon Sep 17 00:00:00 2001 From: SteelSlayer <42044220+SteelSlayer@users.noreply.github.com> Date: Tue, 2 Feb 2021 13:57:54 -0600 Subject: [PATCH] Fixes an issue when saving preferences while using an IPC character (#15421) * sql fix * wrong var --- code/modules/client/preference/preferences_mysql.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/client/preference/preferences_mysql.dm b/code/modules/client/preference/preferences_mysql.dm index 9157031c683..e94ffc115e0 100644 --- a/code/modules/client/preference/preferences_mysql.dm +++ b/code/modules/client/preference/preferences_mysql.dm @@ -436,7 +436,7 @@ "f_style" = f_style, "markingstyleslist" = markingstyleslist, "ha_style" = ha_style, - "alt_head" = alt_head, + "alt_head" = alt_head || "", "e_colour" = e_colour, "underwear" = underwear, "undershirt" = undershirt,