From d6696e994f87ea00ed97f8e7298e5202cd25ad1a Mon Sep 17 00:00:00 2001 From: MrMelbert <51863163+MrMelbert@users.noreply.github.com> Date: Fri, 14 Feb 2025 14:41:27 -0600 Subject: [PATCH] Spy uplink correctly uses rmb and not lmb (#89467) ## About The Pull Request It used to be RMB, then in a refactor the signal was swapped to the wrong one, so that must be corrected. RMB is preferable anyways, as to allow normal LMB interactions to proceed without scanning (to allow for faking and whatnot) ## Changelog :cl: Melbert fix: Spy uplink scans on RMB as intended /:cl: --- code/modules/antagonists/spy/spy_uplink.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/antagonists/spy/spy_uplink.dm b/code/modules/antagonists/spy/spy_uplink.dm index f5c60f706c5..8384dc129da 100644 --- a/code/modules/antagonists/spy/spy_uplink.dm +++ b/code/modules/antagonists/spy/spy_uplink.dm @@ -23,14 +23,14 @@ /datum/component/spy_uplink/RegisterWithParent() RegisterSignal(parent, COMSIG_ATOM_EXAMINE, PROC_REF(on_examine)) RegisterSignal(parent, COMSIG_ITEM_ATTACK_SELF, PROC_REF(on_attack_self)) - RegisterSignal(parent, COMSIG_ITEM_INTERACTING_WITH_ATOM, PROC_REF(on_item_atom_interaction)) + RegisterSignal(parent, COMSIG_ITEM_INTERACTING_WITH_ATOM_SECONDARY, PROC_REF(on_item_atom_interaction)) RegisterSignal(parent, COMSIG_TABLET_CHECK_DETONATE, PROC_REF(block_pda_bombs)) /datum/component/spy_uplink/UnregisterFromParent() UnregisterSignal(parent, list( COMSIG_ATOM_EXAMINE, COMSIG_ITEM_ATTACK_SELF, - COMSIG_ITEM_PRE_ATTACK_SECONDARY, + COMSIG_ITEM_INTERACTING_WITH_ATOM_SECONDARY, COMSIG_TABLET_CHECK_DETONATE, ))