Create client preference for if hotkey mode is enabled by default on login or not.

* Adds preference setting for wether hotkeys should default to enabled or disabled.
* Fixes bug for CTRL+NUMPAD8 using old verb name for toggling head.
This commit is contained in:
Leshana
2018-02-23 14:12:54 -05:00
parent a47ce58f0a
commit 1d11b0d6e1
6 changed files with 27 additions and 3 deletions

View File

@@ -104,6 +104,13 @@ var/list/_client_preferences_by_type
enabled_description = "Show"
disabled_description = "Hide"
/datum/client_preference/hotkeys_default
description ="Hotkeys Default"
key = "HUD_HOTKEYS"
enabled_description = "Enabled"
disabled_description = "Disabled"
enabled_by_default = FALSE // Backwards compatibility
/datum/client_preference/show_typing_indicator
description ="Typing indicator"
key = "SHOW_TYPING"