diff --git a/code/game/sound.dm b/code/game/sound.dm index dbbbc8abfd8..dfdd85bfce0 100644 --- a/code/game/sound.dm +++ b/code/game/sound.dm @@ -38,10 +38,8 @@ preference = list(preference) for(var/p in preference) - // Ignore nulls - if(p) - if(!read_preference(p)) - return FALSE + if(!read_preference(p)) + return FALSE return TRUE diff --git a/code/modules/client/preferences/migrations/13_preferences.dm b/code/modules/client/preferences/migrations/13_preferences.dm index 1c6eb47d31b..e2a8bfaa84a 100644 --- a/code/modules/client/preferences/migrations/13_preferences.dm +++ b/code/modules/client/preferences/migrations/13_preferences.dm @@ -7,6 +7,3 @@ var/list/preferences_disabled = S.get_entry("preferences_disabled") for(var/key in preferences_disabled) S.set_entry("[key]", FALSE) - - // Force a reload of the value cache - apply_all_client_preferences() diff --git a/prof.dll b/prof.dll deleted file mode 100644 index 4721a5c1874..00000000000 Binary files a/prof.dll and /dev/null differ