Update blood.dm (#21032)

This commit is contained in:
Kyani
2023-05-08 17:34:21 -04:00
committed by GitHub
parent c0b2ff7a51
commit 0e95bc8e03
+2 -2
View File
@@ -213,7 +213,7 @@
return blood_data
if(blood_id == "slimejelly")
var/blood_data = list()
blood_data["colour"] = dna.species.blood_color
blood_data["blood_color"] = dna.species.blood_color
return blood_data
//get the id of the substance this mob use as blood.
@@ -256,7 +256,7 @@
//to add a splatter of blood or other mob liquid.
/mob/living/proc/add_splatter_floor(turf/T, small_drip, shift_x, shift_y)
if(get_blood_id() != "blood")//is it blood or welding fuel?
if((get_blood_id() != "blood") && (get_blood_id() != "slimejelly"))//is it blood or welding fuel?
return
if(!T)
T = get_turf(src)