From 175d5e0301046bafdeb282695da381e6204ca539 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Tue, 9 Feb 2021 00:47:24 +0100 Subject: [PATCH] [MIRROR] Removed antiquated intent cycle hotkey for borgs (#3205) * Removed antiquated intent cycle hotkey for borgs (#56740) The intent_cycle hotkey for borgs was left behind during the combat mode switch. It does nothing on its own, but existing as a default hotkey blocks the actual combat mode hotkey unless unbound manually. Closes #56668 Related to #56601 * Removed antiquated intent cycle hotkey for borgs Co-authored-by: zxaber <37497534+zxaber@users.noreply.github.com> --- code/__DEFINES/keybinding.dm | 1 - code/datums/keybinding/robot.dm | 15 --------------- 2 files changed, 16 deletions(-) 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"