From be361a0dab0a1139c0fed4af00549387ef2d71c6 Mon Sep 17 00:00:00 2001 From: meemofcourse <75212565+meemofcourse@users.noreply.github.com> Date: Sat, 8 Jun 2024 21:56:14 -0400 Subject: [PATCH 1/4] increases character slots to 50 --- code/modules/client/preferences.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index b9a4fb8f0ca3..7b991bd135c0 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -5,7 +5,7 @@ GLOBAL_LIST_EMPTY(preferences_datums) //doohickeys for savefiles var/path var/default_slot = 1 //Holder so it doesn't default to slot 1, rather the last one used - var/max_save_slots = 20 + var/max_save_slots = 50 //non-preference stuff var/muted = 0 @@ -227,7 +227,7 @@ GLOBAL_LIST_EMPTY(preferences_datums) load_path(C.ckey) unlock_content = C.IsByondMember() if(unlock_content) - max_save_slots = 30 + max_save_slots = 65 var/loaded_preferences_successfully = load_preferences() if(loaded_preferences_successfully) if(load_character()) From c056fa5ce2747ca45201a6276bff2d8c2e8c8f61 Mon Sep 17 00:00:00 2001 From: meemofcourse <75212565+meemofcourse@users.noreply.github.com> Date: Sat, 8 Jun 2024 21:56:40 -0400 Subject: [PATCH 2/4] gough --- code/modules/client/preferences.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index 7b991bd135c0..8107c541d794 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -227,7 +227,7 @@ GLOBAL_LIST_EMPTY(preferences_datums) load_path(C.ckey) unlock_content = C.IsByondMember() if(unlock_content) - max_save_slots = 65 + max_save_slots = 60 var/loaded_preferences_successfully = load_preferences() if(loaded_preferences_successfully) if(load_character()) From 8dad91f43dc6001df73200001056870033295fc5 Mon Sep 17 00:00:00 2001 From: meemofcourse <75212565+meemofcourse@users.noreply.github.com> Date: Sat, 8 Jun 2024 22:24:31 -0400 Subject: [PATCH 3/4] actually let's do 40 --- code/modules/client/preferences.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index 8107c541d794..5ee15128e4ce 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -5,7 +5,7 @@ GLOBAL_LIST_EMPTY(preferences_datums) //doohickeys for savefiles var/path var/default_slot = 1 //Holder so it doesn't default to slot 1, rather the last one used - var/max_save_slots = 50 + var/max_save_slots = 40 //non-preference stuff var/muted = 0 @@ -227,7 +227,7 @@ GLOBAL_LIST_EMPTY(preferences_datums) load_path(C.ckey) unlock_content = C.IsByondMember() if(unlock_content) - max_save_slots = 60 + max_save_slots = 50 var/loaded_preferences_successfully = load_preferences() if(loaded_preferences_successfully) if(load_character()) From f73a22ae34ea1aaff8620c9e28f66cb1bc5236b2 Mon Sep 17 00:00:00 2001 From: rye-rice <58402542+rye-rice@users.noreply.github.com> Date: Thu, 29 Aug 2024 04:59:28 -0700 Subject: [PATCH 4/4] Update preferences.dm Signed-off-by: rye-rice <58402542+rye-rice@users.noreply.github.com> --- code/modules/client/preferences.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index 5ee15128e4ce..170a6130bd76 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -5,7 +5,7 @@ GLOBAL_LIST_EMPTY(preferences_datums) //doohickeys for savefiles var/path var/default_slot = 1 //Holder so it doesn't default to slot 1, rather the last one used - var/max_save_slots = 40 + var/max_save_slots = 30 //non-preference stuff var/muted = 0