Extra indents removed

This commit is contained in:
Hornygranny
2014-01-10 12:01:53 -08:00
committed by ZomgPonies
parent 5a443e5010
commit 550d9b2e76
@@ -116,19 +116,19 @@ Doesn't work on other aliens/AI.*/
set name = "Spit Neurotoxin (50)"
set desc = "Spits neurotoxin at someone, paralyzing them for a short time."
set category = "Alien"
if(powerc(50))
adjustToxLoss(-50)
src.visible_message("\red [src] spits neurotoxin!", "\green You spit neurotoxin.")
var/turf/T = loc
var/turf/U = get_step(src, dir) // Get the tile infront of the move, based on their direction
if(!isturf(U) || !isturf(T))
return
var/obj/item/projectile/energy/neurotoxin/A = new /obj/item/projectile/energy/neurotoxin(usr.loc)
A.current = U
A.yo = U.y - T.y
A.xo = U.x - T.x
A.process()
return
if(powerc(50))
adjustToxLoss(-50)
src.visible_message("\red [src] spits neurotoxin!", "\green You spit neurotoxin.")
var/turf/T = loc
var/turf/U = get_step(src, dir) // Get the tile infront of the move, based on their direction
if(!isturf(U) || !isturf(T))
return
var/obj/item/projectile/energy/neurotoxin/A = new /obj/item/projectile/energy/neurotoxin(usr.loc)
A.current = U
A.yo = U.y - T.y
A.xo = U.x - T.x
A.process()
return
/mob/living/carbon/alien/humanoid/proc/resin() // -- TLE
set name = "Secrete Resin (75)"