mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-26 22:50:26 +01:00
fixes a runtime with dropping advanced cards from wallets (#62440)
fixes a runtime when transferring advanced ids to/from wallets Fixes #62036
This commit is contained in:
@@ -805,7 +805,7 @@
|
||||
var/obj/item/modular_computer/tablet/slot_holder = slot.holder
|
||||
UnregisterSignal(slot_holder, list(COMSIG_ITEM_EQUIPPED, COMSIG_ITEM_DROPPED))
|
||||
|
||||
if(istype(loc, /obj/item/pda) || istype(OldLoc, /obj/item/storage/wallet))
|
||||
if(istype(loc, /obj/item/pda) || istype(loc, /obj/item/storage/wallet))
|
||||
RegisterSignal(loc, COMSIG_ITEM_EQUIPPED, .proc/update_intern_status)
|
||||
RegisterSignal(loc, COMSIG_ITEM_DROPPED, .proc/remove_intern_status)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user