diff --git a/code/modules/mob/living/carbon/human/savefile.dm b/code/modules/mob/living/carbon/human/savefile.dm index d7281a006fd..2b3038fabe5 100644 --- a/code/modules/mob/living/carbon/human/savefile.dm +++ b/code/modules/mob/living/carbon/human/savefile.dm @@ -35,6 +35,8 @@ datum/preferences/proc/savefile_save(mob/user) F["underwear"] << src.underwear F["name_is_always_random"] << src.be_random_name F["UI"] << src.UI // Skie + F["midis"] << src.midis // Urist + F["ooccolor"] << src.ooccolor // Urist return 1 @@ -88,6 +90,8 @@ datum/preferences/proc/savefile_load(mob/user, var/silent = 1) F["underwear"] >> src.underwear F["name_is_always_random"] >> src.be_random_name F["UI"] >> src.UI // Skie + F["midis"] >> src.midis // Urist + F["ooccolor"] >> src.ooccolor // Urist return 1 #undef SAVEFILE_VERSION_MAX