WIP commit

still working on the camera thing..
This commit is contained in:
Aurorablade
2015-11-01 01:19:35 -04:00
parent 570cfbe566
commit f9d96ffbf1
3 changed files with 25 additions and 3 deletions
+7 -2
View File
@@ -35,8 +35,13 @@
user << "<span class='notice'>You 'clean' \the [target.name].</span>"
if(istype(target, /turf/simulated))
new /obj/effect/decal/cleanable/blood/gibs(target)
else if (istype(target,/mob/living/))
add_blood(target)
else if (istype(target,/mob/living/carbon))
for(var/obj/item/carried_item in target.contents)
if(!istype(carried_item, /obj/item/weapon/implant))//If it's not an implant.
carried_item.add_blood(target)//Oh yes, there will be blood...
var/mob/living/carbon/human/H = target
H.bloody_hands(target,0)
H.bloody_body(target)
return