Merge pull request #13837 from Citadel-Station-13/silicons-patch-31
sprinting now defaults to toggle rather than hold (because 90% of our players probably never check the keybinding preferences and from personal experience, holding down shift to move is awful)
This commit is contained in:
@@ -124,7 +124,8 @@
|
||||
return TRUE
|
||||
|
||||
/datum/keybinding/living/hold_sprint
|
||||
hotkey_keys = list("Shift")
|
||||
hotkey_keys = list()
|
||||
classic_keys = list()
|
||||
name = "hold_sprint"
|
||||
full_name = "Sprint (hold down)"
|
||||
description = "Hold down to sprint"
|
||||
@@ -144,7 +145,8 @@
|
||||
return TRUE
|
||||
|
||||
/datum/keybinding/living/toggle_sprint
|
||||
hotkey_keys = list()
|
||||
hotkey_keys = list("Shift")
|
||||
classic_keys = list("Shift")
|
||||
name = "toggle_sprint"
|
||||
full_name = "Sprint (toggle)"
|
||||
description = "Press to toggle sprint"
|
||||
|
||||
Reference in New Issue
Block a user