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

🆑 Melbert
fix: Spy uplink scans on RMB as intended
/🆑
This commit is contained in:
MrMelbert
2025-03-12 16:01:50 -04:00
committed by Roxy
parent 64e731b756
commit d6696e994f
+2 -2
View File
@@ -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,
))