From efc0f671995b238211a6f423f7be7133b9a56a12 Mon Sep 17 00:00:00 2001 From: "baloh.matevz" Date: Wed, 15 Aug 2012 23:27:48 +0000 Subject: [PATCH] - Saw an error with my last commit. A proc was improperly called. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@4424 316c924e-a436-60f5-8080-3fe189b3f50e --- code/modules/mob/living/carbon/human/inventory.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/inventory.dm b/code/modules/mob/living/carbon/human/inventory.dm index 078ffcee404..7087e25289d 100644 --- a/code/modules/mob/living/carbon/human/inventory.dm +++ b/code/modules/mob/living/carbon/human/inventory.dm @@ -1,6 +1,6 @@ /mob/living/carbon/human/proc/equip_in_one_of_slots(obj/item/W, list/slots, del_on_fail = 1) for (var/slot in slots) - if (equip_to_slot_or_del(W, slots[slot], del_on_fail = 0)) + if (equip_to_slot_if_possible(W, slots[slot], del_on_fail = 0)) return slot if (del_on_fail) del(W)