this shit dosen't even compile yet...

This commit is contained in:
Aurorablade
2015-12-19 22:39:47 -05:00
parent 4c03cf2599
commit 80eb828563
95 changed files with 1140 additions and 648 deletions
+3 -3
View File
@@ -324,10 +324,10 @@
//the mob M is attempting to equip this item into the slot passed through as 'slot'. Return 1 if it can do this and 0 if it can't.
//If you are making custom procs but would like to retain partial or complete functionality of this one, include a 'return ..()' to where you want this to happen.
//Set disable_warning to 1 if you wish it to not give you outputs.
//Set disable_warning to 1 if you wish it to not give you outputs.
/obj/item/proc/mob_can_equip(mob/M, slot, disable_warning = 0)
if(!M)
return 0
return 0
return M.can_equip(src, slot, disable_warning)
@@ -427,7 +427,7 @@
"\red You stab yourself in the eyes with [src]!" \
)
if(istype(H))
var/obj/item/organ/eyes/eyes = H.internal_organs_by_name["eyes"]
var/obj/item/organ/internal/eyes/eyes = H.internal_organs_by_name["eyes"]
if(!eyes)
return
eyes.take_damage(rand(3,4), 1)