diff --git a/code/datums/keybinding/human.dm b/code/datums/keybinding/human.dm index 37806d9106fda..5700bf94c6fe4 100644 --- a/code/datums/keybinding/human.dm +++ b/code/datums/keybinding/human.dm @@ -36,7 +36,7 @@ quick_equip_slot = 5 /datum/keybinding/human/unique_action - hotkey_keys = list("C") + hotkey_keys = list("Space") name = "unique_action" full_name = "Perform unique action" keybind_signal = COMSIG_KB_UNIQUEACTION diff --git a/code/datums/keybinding/living.dm b/code/datums/keybinding/living.dm index b4c13d0b627d5..ca7e337600414 100644 --- a/code/datums/keybinding/living.dm +++ b/code/datums/keybinding/living.dm @@ -19,7 +19,7 @@ return TRUE /datum/keybinding/living/attempt_jump - hotkey_keys = list("Space") + hotkey_keys = list("C") name = "Jump" full_name = "Jump" description = "Jumps, if your mob is capable of doing so."