From 2c6d2f07fca621638df533f75e355eb5ebfa0bb4 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)