From ab5d137a042276ba1ebf2d2127b9b4e32ed48a45 Mon Sep 17 00:00:00 2001 From: "n3ophyt3@gmail.com" Date: Mon, 27 Dec 2010 19:42:20 +0000 Subject: [PATCH] badmin traitors can now get PDA uplinks if they are wearing their PDA in their ID slot git-svn-id: http://tgstation13.googlecode.com/svn/trunk@714 316c924e-a436-60f5-8080-3fe189b3f50e --- code/game/gamemodes/game_mode.dm | 3 +++ 1 file changed, 3 insertions(+) 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()