    if (specialData == 0)
    {
        float alpha = gl_FragData[0].a;
        float depth = 0;
        if (alpha > 0)
        {
            depth = sqrt(eyePos.x * eyePos.x + eyePos.y * eyePos.y + eyePos.z * eyePos.z);
            if (depth >= 80) discard;
            else
            {
                float depth2 = clamp(1 - (depth / 4), 0, 1);
                depth = mod(depth - activeTicks * 2, 80) - 80;
                depth = 1 + (depth * .025);
                if (depth < 0 || depth > 1) depth = 0;
                depth = max(depth2, pow(depth, 3));
            }
        }
        else discard;
        gl_FragData[0] = vec4(depth * .5, depth * .5, depth * .5, alpha);
    }