From 3a6d72af5420fec4f975687480c44afd257cb9b8 Mon Sep 17 00:00:00 2001
From: Trilbyspaceclone <30435998+Trilbyspaceclone@users.noreply.github.com>
Date: Tue, 28 Jul 2020 00:20:14 -0400
Subject: [PATCH] Update spellcard.dm
---
.../projectiles/projectile/magic/spellcard.dm | 32 +++++++++----------
1 file changed, 16 insertions(+), 16 deletions(-)
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