From f8a912b7c6b0ce32e1d3e162ed5ffb220a84467f Mon Sep 17 00:00:00 2001 From: SandPoot Date: Mon, 8 Apr 2024 14:50:40 -0300 Subject: [PATCH 1/2] ye --- 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 4c992acf54..f2a9c131cc 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -65,7 +65,7 @@ GLOBAL_LIST_EMPTY(preferences_datums) var/screentip_pref = SCREENTIP_PREFERENCE_ENABLED var/screentip_color = "#ffd391" var/screentip_images = TRUE - var/hotkeys = FALSE + var/hotkeys = TRUE ///Runechat preference. If true, certain messages will be displayed on the map, not ust on the chat area. Boolean. var/chat_on_map = TRUE From 1a7a4230325a5a569dc8a20e0cda32d07d5d1abe Mon Sep 17 00:00:00 2001 From: SandPoot Date: Mon, 8 Apr 2024 14:59:09 -0300 Subject: [PATCH 2/2] safeguard for those who already joined before --- code/modules/client/preferences_savefile.dm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/code/modules/client/preferences_savefile.dm b/code/modules/client/preferences_savefile.dm index 88f9e6c55a..6c65cc0720 100644 --- a/code/modules/client/preferences_savefile.dm +++ b/code/modules/client/preferences_savefile.dm @@ -5,7 +5,7 @@ // You do not need to raise this if you are adding new values that have sane defaults. // Only raise this value when changing the meaning/format/name/layout of an existing value // where you would want the updater procs below to run -#define SAVEFILE_VERSION_MAX 58 +#define SAVEFILE_VERSION_MAX 59 /* SAVEFILE UPDATING/VERSIONING - 'Simplified', or rather, more coder-friendly ~Carn @@ -62,6 +62,9 @@ SAVEFILE UPDATING/VERSIONING - 'Simplified', or rather, more coder-friendly ~Car else // Let's give it a little chance okay, change if you don't like still. screentip_pref = SCREENTIP_PREFERENCE_CONTEXT_ONLY + // Input had a bad reception anyways, this way people won't even have to look into it. + if(current_version < 59) + hotkeys = TRUE /datum/preferences/proc/update_character(current_version, savefile/S) if(current_version < 19)