Fixes bad indent

This commit is contained in:
VistaPOWA
2014-04-27 14:34:52 +02:00
parent 14ad291ba2
commit 4c7cbeff08
+5 -5
View File
@@ -35,11 +35,11 @@ would spawn and follow the beaker, even if it is carried or thrown.
return
/datum/effect/effect/proc/fadeOut(var/atom/A, var/frames = 16)
var/step = A.alpha / frames
for(var/i = 0, i < frames, i++)
A.alpha -= step
sleep(world.tick_lag)
return
var/step = A.alpha / frames
for(var/i = 0, i < frames, i++)
A.alpha -= step
sleep(world.tick_lag)
return
/obj/effect/effect/water/New()