Removes a colon

This commit is contained in:
Kelenius
2015-07-18 14:53:35 +03:00
parent b8a354467e
commit 4e2049ccaf

View File

@@ -430,10 +430,10 @@
if (istype(location, /turf/simulated))
location.add_blood(M)
if(ishuman(M))
var/mob/living/carbon/H = M
var/blood_volume = round(H:vessel.get_reagent_amount("blood"))
var/mob/living/carbon/human/H = M
var/blood_volume = round(H.vessel.get_reagent_amount("blood"))
if(blood_volume > 0)
H:vessel.remove_reagent("blood",1)
H.vessel.remove_reagent("blood", 1)
step(pulling, get_dir(pulling.loc, T))