diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm
index 3a8ef87b..36b6058b 100644
--- a/code/modules/client/preferences.dm
+++ b/code/modules/client/preferences.dm
@@ -302,7 +302,7 @@ GLOBAL_LIST_EMPTY(preferences_datums)
dat += "
"
- if(path)
+ if(path) //Show list of characters
var/savefile/S = new /savefile(path)
if(S)
dat += ""
diff --git a/code/modules/client/preferences_savefile.dm b/code/modules/client/preferences_savefile.dm
index fb1d677c..53cc37dc 100644
--- a/code/modules/client/preferences_savefile.dm
+++ b/code/modules/client/preferences_savefile.dm
@@ -46,7 +46,6 @@ SAVEFILE UPDATING/VERSIONING - 'Simplified', or rather, more coder-friendly ~Car
clientfps = 60
if(current_version < 23)
S["be_special"] >> be_special
- WRITE_FILE(S["be_special"], null)
return
/datum/preferences/proc/update_character(current_version, savefile/S)