Makes grabbing interactions more interesting on step

Also potentially really fuckin unbalanced too
This commit is contained in:
Dahlular
2020-04-18 14:05:10 -06:00
parent b4dc5c6c82
commit a456cf723e
2 changed files with 82 additions and 55 deletions
+9
View File
@@ -73,6 +73,15 @@
L.put_in_hands(holder)
return
//shoehorned (get it?) and lazy way to do instant foot pickups cause haha funny.
/mob/living/proc/mob_pickupfeet(mob/living/L)
var/obj/item/clothing/head/mob_holder/holder = generate_mob_holder()
if(!holder)
return
drop_all_held_items()
L.equip_to_slot(holder, SLOT_SHOES)
return
/mob/living/proc/mob_try_pickup(mob/living/user)
if(!ishuman(user) || !src.Adjacent(user) || user.incapacitated() || !can_be_held)
return FALSE