From 556cf17916587563b423b44d3e5d635d1c6027e2 Mon Sep 17 00:00:00 2001 From: Gwydion Brain Date: Sun, 23 Sep 2018 12:09:17 -0700 Subject: [PATCH] Syntax Cleanup --- code/modules/mob/living/simple_animal/bot/mulebot.dm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/code/modules/mob/living/simple_animal/bot/mulebot.dm b/code/modules/mob/living/simple_animal/bot/mulebot.dm index df5d0b38ff5..cd008b6ef2f 100644 --- a/code/modules/mob/living/simple_animal/bot/mulebot.dm +++ b/code/modules/mob/living/simple_animal/bot/mulebot.dm @@ -710,11 +710,11 @@ if(NO_BLOOD in H.dna.species.species_traits)//Does the run over mob have blood? return//If it doesn't it shouldn't bleed (Though a check should be made eventually for things with liquid in them, like slime people, vox armalis, etc.) - else - var/turf/T = get_turf(src)//Where are we? - H.add_mob_blood(H)//Cover the victim in their own blood. - H.add_splatter_floor(T)//Put the blood where we are. - bloodiness += 4 + + var/turf/T = get_turf(src)//Where are we? + H.add_mob_blood(H)//Cover the victim in their own blood. + H.add_splatter_floor(T)//Put the blood where we are. + bloodiness += 4 var/list/blood_dna = H.get_blood_dna_list() if(blood_dna)