Monkey business

This commit is contained in:
Chayse Ramsay
2019-08-04 05:07:24 +01:00
parent a0a21dc01f
commit 46e4023ba9
4 changed files with 9 additions and 9 deletions
@@ -77,12 +77,6 @@
s_store,
)
/mob/living/carbon/human/proc/get_internal_slots()
return list(
head,
wear_mask,
)
//This is an UNSAFE proc. Use mob_can_equip() before calling this one! Or rather use equip_to_slot_if_possible() or advanced_equip_to_slot_if_possible()
/mob/living/carbon/human/equip_to_slot(obj/item/I, slot)
if(!..()) //a check failed or the item has already found its slot
@@ -140,3 +140,9 @@
/mob/living/carbon/proc/get_holding_bodypart_of_item(obj/item/I)
var/index = get_held_index_of_item(I)
return index && hand_bodyparts[index]
/mob/living/carbon/proc/get_internal_slots()
return list(
head,
wear_mask,
)