diff --git a/code/game/gamemodes/game_mode.dm b/code/game/gamemodes/game_mode.dm index 5db6ebd781b..7db3bcb4c6e 100644 --- a/code/game/gamemodes/game_mode.dm +++ b/code/game/gamemodes/game_mode.dm @@ -77,6 +77,9 @@ if (!R && istype(traitor_mob.belt, /obj/item/device/pda)) R = traitor_mob.belt loc = "on your belt" + if (!R && istype(traitor_mob.wear_id, /obj/item/device/pda)) + R = traitor_mob.wear_id + loc = "on your jumpsuit" if (!R && istype(traitor_mob.l_hand, /obj/item/weapon/storage)) var/obj/item/weapon/storage/S = traitor_mob.l_hand var/list/L = S.return_inv()