diff --git a/code/__DEFINES/keybinding.dm b/code/__DEFINES/keybinding.dm index 65d1f87820f..2743de54aa3 100644 --- a/code/__DEFINES/keybinding.dm +++ b/code/__DEFINES/keybinding.dm @@ -74,7 +74,6 @@ #define COMSIG_KB_SILICON_TOGGLEMODULEONE_DOWN "keybinding_silicon_togglemoduleone_down" #define COMSIG_KB_SILICON_TOGGLEMODULETWO_DOWN "keybinding_silicon_togglemoduletwo_down" #define COMSIG_KB_SILICON_TOGGLEMODULETHREE_DOWN "keybinding_silicon_togglemodulethree_down" -#define COMSIG_KB_SILICON_CYCLEINTENT_DOWN "keybinding_silicon_cycleintent_down" #define COMSIG_KB_SILICON_UNEQUIPMODULE_DOWN "keybinding_silicon_unequipmodule_down" //Movement diff --git a/code/datums/keybinding/robot.dm b/code/datums/keybinding/robot.dm index 2dd5a5806e5..de941732275 100644 --- a/code/datums/keybinding/robot.dm +++ b/code/datums/keybinding/robot.dm @@ -50,21 +50,6 @@ R.toggle_module(3) return TRUE -/datum/keybinding/robot/intent_cycle - hotkey_keys = list("4") - name = "cycle_intent" - full_name = "Cycle intent left" - description = "Cycles the intent left" - keybind_signal = COMSIG_KB_SILICON_CYCLEINTENT_DOWN - -/datum/keybinding/robot/intent_cycle/down(client/user) - . = ..() - if(.) - return - var/mob/living/silicon/robot/R = user.mob - R.set_combat_mode(!R.combat_mode) - return TRUE - /datum/keybinding/robot/unequip_module hotkey_keys = list("Q") name = "unequip_module"