mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-28 07:38:05 +01:00
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:
@@ -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,
|
||||
))
|
||||
|
||||
|
||||
Reference in New Issue
Block a user