Skip to content

Commit

Permalink
Buffs number of character slots (for everyone) to 20
Browse files Browse the repository at this point in the history
  • Loading branch information
Absolucy committed Mar 12, 2024
1 parent ad61b78 commit a588bbc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 9 deletions.
7 changes: 4 additions & 3 deletions code/modules/client/preferences.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,12 +105,6 @@ export const CharacterPreferenceWindow = (props, context) => {
/>
</Stack.Item>

{!data.content_unlocked && (
<Stack.Item align="center">
Buy BYOND premium for more slots!
</Stack.Item>
)}

<Stack.Divider />

<Stack.Item>
Expand Down

0 comments on commit a588bbc

Please sign in to comment.