mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-11 10:11:09 +00:00
* 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>
67 lines
1.6 KiB
Plaintext
67 lines
1.6 KiB
Plaintext
/datum/keybinding/robot
|
|
category = CATEGORY_ROBOT
|
|
weight = WEIGHT_ROBOT
|
|
|
|
/datum/keybinding/robot/can_use(client/user)
|
|
return iscyborg(user.mob)
|
|
|
|
/datum/keybinding/robot/moduleone
|
|
hotkey_keys = list("1")
|
|
name = "module_one"
|
|
full_name = "Toggle module 1"
|
|
description = "Equips or unequips the first module"
|
|
keybind_signal = COMSIG_KB_SILICON_TOGGLEMODULEONE_DOWN
|
|
|
|
/datum/keybinding/robot/moduleone/down(client/user)
|
|
. = ..()
|
|
if(.)
|
|
return
|
|
var/mob/living/silicon/robot/R = user.mob
|
|
R.toggle_module(1)
|
|
return TRUE
|
|
|
|
/datum/keybinding/robot/moduletwo
|
|
hotkey_keys = list("2")
|
|
name = "module_two"
|
|
full_name = "Toggle module 2"
|
|
description = "Equips or unequips the second module"
|
|
keybind_signal = COMSIG_KB_SILICON_TOGGLEMODULETWO_DOWN
|
|
|
|
/datum/keybinding/robot/moduletwo/down(client/user)
|
|
. = ..()
|
|
if(.)
|
|
return
|
|
var/mob/living/silicon/robot/R = user.mob
|
|
R.toggle_module(2)
|
|
return TRUE
|
|
|
|
/datum/keybinding/robot/modulethree
|
|
hotkey_keys = list("3")
|
|
name = "module_three"
|
|
full_name = "Toggle module 3"
|
|
description = "Equips or unequips the third module"
|
|
keybind_signal = COMSIG_KB_SILICON_TOGGLEMODULETHREE_DOWN
|
|
|
|
/datum/keybinding/robot/modulethree/down(client/user)
|
|
. = ..()
|
|
if(.)
|
|
return
|
|
var/mob/living/silicon/robot/R = user.mob
|
|
R.toggle_module(3)
|
|
return TRUE
|
|
|
|
/datum/keybinding/robot/unequip_module
|
|
hotkey_keys = list("Q")
|
|
name = "unequip_module"
|
|
full_name = "Unequip module"
|
|
description = "Unequips the active module"
|
|
keybind_signal = COMSIG_KB_SILICON_UNEQUIPMODULE_DOWN
|
|
|
|
/datum/keybinding/robot/unequip_module/down(client/user)
|
|
. = ..()
|
|
if(.)
|
|
return
|
|
var/mob/living/silicon/robot/R = user.mob
|
|
R.uneq_active()
|
|
return TRUE
|