Beginning to port over new icon update from limbs branch. WIP

This commit is contained in:
Zuhayr
2015-03-24 23:48:54 +10:30
parent b9072baa97
commit a63b9b4e73
17 changed files with 466 additions and 456 deletions
+5 -4
View File
@@ -22,10 +22,11 @@
return
/obj/item/weapon/paper_bin/attack_hand(mob/user as mob)
if (hasorgans(user))
var/obj/item/organ/external/temp = user:organs_by_name["r_hand"]
if (user.hand)
temp = user:organs_by_name["l_hand"]
if(ishuman(user))
var/mob/living/carbon/human/H = user
var/obj/item/organ/external/temp = H.organs_by_name["r_hand"]
if (H.hand)
temp = H.organs_by_name["l_hand"]
if(temp && !temp.is_usable())
user << "<span class='notice'>You try to move your [temp.display_name], but cannot!"
return