From 1ce934cdd92914a06bd231f8de8c595091bd24a1 Mon Sep 17 00:00:00 2001 From: Cyberboss Date: Tue, 31 Jan 2017 00:37:51 -0500 Subject: [PATCH] Fixes drone inventories --- .../mob/living/simple_animal/friendly/drone/inventory.dm | 2 +- .../modules/mob/living/simple_animal/guardian/types/dextrous.dm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/simple_animal/friendly/drone/inventory.dm b/code/modules/mob/living/simple_animal/friendly/drone/inventory.dm index eeacd3ab97d..8475ce8c557 100644 --- a/code/modules/mob/living/simple_animal/friendly/drone/inventory.dm +++ b/code/modules/mob/living/simple_animal/friendly/drone/inventory.dm @@ -7,7 +7,7 @@ /mob/living/simple_animal/drone/doUnEquip(obj/item/I, force) - if(..(I,force)) + if(..()) update_inv_hands() if(I == head) head = null diff --git a/code/modules/mob/living/simple_animal/guardian/types/dextrous.dm b/code/modules/mob/living/simple_animal/guardian/types/dextrous.dm index dbfd48502aa..b8d942fa5a8 100644 --- a/code/modules/mob/living/simple_animal/guardian/types/dextrous.dm +++ b/code/modules/mob/living/simple_animal/guardian/types/dextrous.dm @@ -59,7 +59,7 @@ //SLOT HANDLING BULLSHIT FOR INTERNAL STORAGE /mob/living/simple_animal/hostile/guardian/dextrous/doUnEquip(obj/item/I, force) - if(..(I,force)) + if(..()) update_inv_hands() if(I == internal_storage) internal_storage = null