Merge pull request #16071 from SandPoot/hotkeys-default-pls

Makes keybindings default to hotkeys
This commit is contained in:
deathride58
2024-04-08 14:11:18 -04:00
committed by GitHub
2 changed files with 5 additions and 2 deletions

View File

@@ -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

View File

@@ -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)