diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm
index 9ad99ddc38b1..6a0475ab053b 100644
--- a/code/modules/client/preferences.dm
+++ b/code/modules/client/preferences.dm
@@ -9,7 +9,7 @@ GLOBAL_LIST_EMPTY(preferences_datums)
/// Ensures that we always load the last used save, QOL
var/default_slot = 1
/// The maximum number of slots we're allowed to contain
- var/max_save_slots = 3
+ var/max_save_slots = 20
/// Bitflags for communications that are muted
var/muted = NONE
@@ -106,8 +106,9 @@ GLOBAL_LIST_EMPTY(preferences_datums)
if(load_and_save && !fexists(path))
try_savefile_type_migration()
unlock_content = !!parent.IsByondMember()
- if(unlock_content)
- max_save_slots = 8
+ // monke edit: more save slots
+ //if(unlock_content)
+ // max_save_slots = 8
else
CRASH("attempted to create a preferences datum without a client or mock!")
load_savefile()
diff --git a/tgui/packages/tgui/interfaces/PreferencesMenu/CharacterPreferenceWindow.tsx b/tgui/packages/tgui/interfaces/PreferencesMenu/CharacterPreferenceWindow.tsx
index 0c2e5f107fb5..ec33302c4d74 100644
--- a/tgui/packages/tgui/interfaces/PreferencesMenu/CharacterPreferenceWindow.tsx
+++ b/tgui/packages/tgui/interfaces/PreferencesMenu/CharacterPreferenceWindow.tsx
@@ -105,12 +105,6 @@ export const CharacterPreferenceWindow = (props, context) => {
/>
- {!data.content_unlocked && (
-
- Buy BYOND premium for more slots!
-
- )}
-