From fce1e53ea416902b8dc42bbc78e192bc8ba90e19 Mon Sep 17 00:00:00 2001 From: TheFurryFeline <38586851+TheFurryFeline@users.noreply.github.com> Date: Wed, 24 Apr 2019 09:06:09 -0400 Subject: [PATCH] Indents Causes Warnings. Begone! On the tin, mostly. Forces some if statements to execute properly and not trigger Travis. --- code/modules/mob/living/carbon/human/human_damage.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/mob/living/carbon/human/human_damage.dm b/code/modules/mob/living/carbon/human/human_damage.dm index 394acc565e..45f174063f 100644 --- a/code/modules/mob/living/carbon/human/human_damage.dm +++ b/code/modules/mob/living/carbon/human/human_damage.dm @@ -118,7 +118,7 @@ if(!isnull(M.incoming_brute_damage_percent)) amount *= M.incoming_brute_damage_percent if(nif && nif.flag_check(NIF_C_BRUTEARMOR,NIF_FLAGS_COMBAT)){amount *= 0.7} //VOREStation Edit - NIF mod for damage resistance for this type of damage - take_overall_damage(amount, 0) + take_overall_damage(amount, 0) else for(var/datum/modifier/M in modifiers) if(!isnull(M.incoming_healing_percent)) @@ -136,7 +136,7 @@ if(!isnull(M.incoming_fire_damage_percent)) amount *= M.incoming_fire_damage_percent if(nif && nif.flag_check(NIF_C_BURNARMOR,NIF_FLAGS_COMBAT)){amount *= 0.7} //VOREStation Edit - NIF mod for damage resistance for this type of damage - take_overall_damage(0, amount) + take_overall_damage(0, amount) else for(var/datum/modifier/M in modifiers) if(!isnull(M.incoming_healing_percent)) @@ -178,7 +178,7 @@ if(!isnull(M.incoming_fire_damage_percent)) amount *= M.incoming_fire_damage_percent if(nif && nif.flag_check(NIF_C_BURNARMOR,NIF_FLAGS_COMBAT)){amount *= 0.7} //VOREStation Edit - NIF mod for damage resistance for this type of damage - O.take_damage(0, amount, sharp=is_sharp(damage_source), edge=has_edge(damage_source), used_weapon=damage_source) + O.take_damage(0, amount, sharp=is_sharp(damage_source), edge=has_edge(damage_source), used_weapon=damage_source) else for(var/datum/modifier/M in modifiers) if(!isnull(M.incoming_healing_percent))