diff --git a/code/modules/projectiles/projectile/magic/spellcard.dm b/code/modules/projectiles/projectile/magic/spellcard.dm index 5f9921bd62..f07c2f6f87 100644 --- a/code/modules/projectiles/projectile/magic/spellcard.dm +++ b/code/modules/projectiles/projectile/magic/spellcard.dm @@ -27,12 +27,12 @@ M.visible_message("[src] vanishes on contact with [target]!") return BULLET_ACT_BLOCK - if(iscarbon(target)) - M.adjust_fire_stacks(fire_stacks) - M.IgniteMob() - return - else - damage = 20 //If we are a simplemob we deal 5x damage + if(iscarbon(target)) + M.adjust_fire_stacks(fire_stacks) + M.IgniteMob() + return + else + damage = 20 //If we are a simplemob we deal 5x damage /obj/item/projectile/magic/spellcard/book/shock damage = 0 @@ -53,13 +53,13 @@ if(M.anti_magic_check()) M.visible_message("[src] vanishes on contact with [target]!") return BULLET_ACT_BLOCK - if(iscarbon(target)) - M.visible_message("[src] mends [target]!") - M.adjustBruteLoss(-5) //HEALS - M.adjustOxyLoss(-5) - M.adjustBruteLoss(-5) - M.adjustFireLoss(-5) - M.adjustToxLoss(-5, TRUE) //heals TOXINLOVERs - M.adjustCloneLoss(-5) - M.adjustStaminaLoss(-5) - return + if(iscarbon(target)) + M.visible_message("[src] mends [target]!") + M.adjustBruteLoss(-5) //HEALS + M.adjustOxyLoss(-5) + M.adjustBruteLoss(-5) + M.adjustFireLoss(-5) + M.adjustToxLoss(-5, TRUE) //heals TOXINLOVERs + M.adjustCloneLoss(-5) + M.adjustStaminaLoss(-5) + return