Skip to content

Commit

Permalink
Update blood.dm (ParadiseSS13#21032)
Browse files Browse the repository at this point in the history
  • Loading branch information
EmeraldCandy authored May 8, 2023
1 parent c0b2ff7 commit 0e95bc8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/modules/surgery/organs/blood.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit 0e95bc8

Please sign in to comment.