From 13078c1130b78c13b565feba280c236b50f6168f Mon Sep 17 00:00:00 2001 From: LetterJay Date: Mon, 19 Jun 2017 20:52:25 -0500 Subject: [PATCH] Update preferences_savefile.dm --- code/modules/client/preferences_savefile.dm | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/code/modules/client/preferences_savefile.dm b/code/modules/client/preferences_savefile.dm index 076761f93f..c52767f1d9 100644 --- a/code/modules/client/preferences_savefile.dm +++ b/code/modules/client/preferences_savefile.dm @@ -183,6 +183,9 @@ SAVEFILE UPDATING/VERSIONING - 'Simplified', or rather, more coder-friendly ~Car S["inquisitive_ghost"] >> inquisitive_ghost S["uses_glasses_colour"]>> uses_glasses_colour S["clientfps"] >> clientfps + S["menuoptions"] >> menuoptions + S["enable_tips"] >> enable_tips + S["tip_delay"] >> tip_delay S["parallax"] >> parallax S["menuoptions"] >> menuoptions //citadel code @@ -249,6 +252,8 @@ SAVEFILE UPDATING/VERSIONING - 'Simplified', or rather, more coder-friendly ~Car S["clientfps"] << clientfps S["parallax"] << parallax S["menuoptions"] << menuoptions + S["enable_tips"] << enable_tips + S["tip_delay"] << tip_delay //citadel code S["arousable"] << arousable @@ -561,4 +566,4 @@ SAVEFILE UPDATING/VERSIONING - 'Simplified', or rather, more coder-friendly ~Car var/savefile/S = new /savefile(path) S.ImportText("/",file("[path].txt")) -#endif \ No newline at end of file +#endif