From 6a9b030b57f9ecff3031aa4dfd7098925973b964 Mon Sep 17 00:00:00 2001 From: Mothblocks <35135081+Mothblocks@users.noreply.github.com> Date: Wed, 2 Jun 2021 18:37:52 -0700 Subject: [PATCH] Rebind alt-right-click to right-click for circuit controllers (#59337) Easier key combination. --- code/modules/wiremod/shell/controller.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/wiremod/shell/controller.dm b/code/modules/wiremod/shell/controller.dm index c9cc153a9db..84564986579 100644 --- a/code/modules/wiremod/shell/controller.dm +++ b/code/modules/wiremod/shell/controller.dm @@ -44,12 +44,12 @@ /obj/item/circuit_component/controller/register_shell(atom/movable/shell) RegisterSignal(shell, COMSIG_ITEM_ATTACK_SELF, .proc/send_trigger) RegisterSignal(shell, COMSIG_CLICK_ALT, .proc/send_alternate_signal) - RegisterSignal(shell, COMSIG_CLICK_ALT_SECONDARY, .proc/send_right_signal) + RegisterSignal(shell, COMSIG_CLICK_RIGHT, .proc/send_right_signal) /obj/item/circuit_component/controller/unregister_shell(atom/movable/shell) UnregisterSignal(shell, list( COMSIG_ITEM_ATTACK_SELF, - COMSIG_CLICK_ALT_SECONDARY, + COMSIG_CLICK_RIGHT, COMSIG_CLICK_ALT, ))