From 1d6e105f8ac64ad4d798e6185e309e959ebd8faa Mon Sep 17 00:00:00 2001 From: FloFluoro <3611705+FloFluoro@users.noreply.github.com> Date: Thu, 8 Sep 2022 07:21:30 -0400 Subject: [PATCH] check_id now checks for ID in the PDA slot (#18992) --- code/modules/mob/living/carbon/human/human.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/modules/mob/living/carbon/human/human.dm b/code/modules/mob/living/carbon/human/human.dm index a1c0fd12b94..41f86180f77 100644 --- a/code/modules/mob/living/carbon/human/human.dm +++ b/code/modules/mob/living/carbon/human/human.dm @@ -504,6 +504,10 @@ var/obj/item/pda/pda = wear_id if(istype(pda) && pda.id) id = pda.id + else + pda = wear_pda + if(istype(pda) && pda.id) + id = pda.id if(check_hands) if(istype(get_active_hand(), /obj/item/card/id))