From 02bd38525be49af890a05f5eff891d25dbe9a8c1 Mon Sep 17 00:00:00 2001 From: ZomgPonies Date: Fri, 20 Feb 2015 11:17:03 -0500 Subject: [PATCH] Fix PDA bug --- code/modules/mob/living/carbon/human/inventory.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/modules/mob/living/carbon/human/inventory.dm b/code/modules/mob/living/carbon/human/inventory.dm index 30e3f9dc5f5..23327fd3211 100644 --- a/code/modules/mob/living/carbon/human/inventory.dm +++ b/code/modules/mob/living/carbon/human/inventory.dm @@ -163,6 +163,9 @@ else if(I == wear_id) wear_id = null update_inv_wear_id(0) + else if(I == wear_pda) + wear_pda = null + update_inv_wear_pda(0) else if(I == r_store) r_store = null update_inv_pockets(0)