Jump to content

[solved] onRenderWorldLast not called often enough for custom particle renderer


Recommended Posts

Posted

Good day all,

 

I pieced together this custom particle renderer, but now I run into the issue that onRenderWorldLast doesnt get called as often as onUpdate which causes my particles to not be rendered properly because they expire in between renders. They litterally flit out of existance, get about 1-4 render passes instead of the full 18. When I lag out my computer I can get 6 render passes out of it which shows ot me that hte particles itself are not the issue, its the fault in this particle engine not getting called often enough.

 

Can someone tell me if I overlooked some instruction so onRenderWorldLast gets called every render pass? I get 20 fps so I should be able to get all 18 renderpasses to render, but only a few render.

 

I've been trying to tackle this problem for the last 12 hours solid, but I'm hitting the point my generic forge knowledge isnt enough anymore. I have already stripped apart the particle to see if that was the issue, but that isnt the issue. the issue is most definately in the onRenderWorldLast not making an appearance often enough.

 

All the way below I have my debugging output that my code gives that show the particles getting updated more often than rendered

 

I have it registered in ClientProxy.java with

 

MinecraftForge.EVENT_BUS.register((Object)ParticleEngine.instance);
FMLCommonHandler.instance().bus().register((Object)ParticleEngine.instance);

 

public class ParticleEngine 
{
    public static ParticleEngine instance;
    public static final ResourceLocation particleTexture;
    protected World worldObj;
    private HashMap<Integer, ArrayList<EntityFX>>[] particles;
    private Random rand;
    public ParticleEngine() {
        super();
        MagicCookie.log.warn("Initialising particle engine.");
        this.particles = (HashMap<Integer, ArrayList<EntityFX>>[])new HashMap[] { new HashMap(), new HashMap() };
        this.rand = new Random();
    }
    
    @SideOnly(Side.CLIENT)
    @SubscribeEvent
    public void onRenderWorldLast(final RenderWorldLastEvent event) {
    	MagicCookie.log.warn("Calling onRenderWorldLast");
        final float frame = event.partialTicks;
        final Entity entity = (Entity)Minecraft.getMinecraft().thePlayer;
        final TextureManager renderer = Minecraft.getMinecraft().renderEngine;
        final int dim = Minecraft.getMinecraft().theWorld.provider.dimensionId;
        renderer.bindTexture(ParticleEngine.particleTexture);
        GL11.glPushMatrix();
        GL11.glColor4f(1.0f, 1.0f, 1.0f, 1.0f);
        GL11.glDepthMask(false);
        GL11.glEnable(3042);
        GL11.glAlphaFunc(516, 0.003921569f);
        for (int layer = 0; layer < 2; ++layer) {
            if (this.particles[layer].containsKey(dim)) {
                final ArrayList<EntityFX> parts = this.particles[layer].get(dim);
                if (parts.size() != 0) {
                    GL11.glPushMatrix();
                    switch (layer) {
                        case 0: {
                            GL11.glBlendFunc(770, 1);
                            break;
                        }
                        case 1: {
                            GL11.glBlendFunc(770, 771);
                            break;
                        }
                    }
                    final float f1 = ActiveRenderInfo.rotationX;
                    final float f2 = ActiveRenderInfo.rotationZ;
                    final float f3 = ActiveRenderInfo.rotationYZ;
                    final float f4 = ActiveRenderInfo.rotationXY;
                    final float f5 = ActiveRenderInfo.rotationXZ;
                    EntityFX.interpPosX = entity.lastTickPosX + (entity.posX - entity.lastTickPosX) * frame;
                    EntityFX.interpPosY = entity.lastTickPosY + (entity.posY - entity.lastTickPosY) * frame;
                    EntityFX.interpPosZ = entity.lastTickPosZ + (entity.posZ - entity.lastTickPosZ) * frame;
                    final Tessellator tessellator = Tessellator.instance;
                    tessellator.startDrawingQuads();
                    for (int j = 0; j < parts.size(); ++j) {
                        final EntityFX entityfx = parts.get(j);
                        if (entityfx != null) {
                            tessellator.setBrightness(entityfx.getBrightnessForRender(frame));
                            try {
                                entityfx.renderParticle(tessellator, frame, f1, f5, f2, f3, f4);
                            }
                            catch (Throwable throwable) {
                                final CrashReport crashreport = CrashReport.makeCrashReport(throwable, "Rendering Particle");
                                final CrashReportCategory crashreportcategory = crashreport.makeCategory("Particle being rendered");
                                crashreportcategory.addCrashSectionCallable("Particle", (Callable)new Callable() {
                                    @Override
                                    public String call() {
                                        return entityfx.toString();
                                    }
                                });
                                crashreportcategory.addCrashSectionCallable("Particle Type", (Callable)new Callable() {
                                    @Override
                                    public String call() {
                                        return "ENTITY_PARTICLE_TEXTURE";
                                    }
                                });
                                throw new ReportedException(crashreport);
                            }
                        }
                    }
                    tessellator.draw();
                    GL11.glPopMatrix();
                }
            }
        }
        GL11.glDisable(3042);
        GL11.glDepthMask(true);
        GL11.glAlphaFunc(516, 0.1f);
        GL11.glPopMatrix();
    }
    
    public void addEffect(final World world, final EntityFX fx) {
        if (!this.particles[fx.getFXLayer()].containsKey(world.provider.dimensionId)) {
            this.particles[fx.getFXLayer()].put(world.provider.dimensionId, new ArrayList<EntityFX>());
        }

        final ArrayList<EntityFX> parts = this.particles[fx.getFXLayer()].get(world.provider.dimensionId);
        if (parts.size() >= 2000) {
            parts.remove(0);
        }
        parts.add(fx);
        this.particles[fx.getFXLayer()].put(world.provider.dimensionId, parts);
    }
    
    @SideOnly(Side.CLIENT)
    @SubscribeEvent
    public void updateParticles(final TickEvent.ClientTickEvent event) {
        if (event.side == Side.SERVER) {
            return;
        }
        final Minecraft mc = FMLClientHandler.instance().getClient();
        final World world = (World)mc.theWorld;
        if (mc.theWorld == null) {
            return;
        }
        final int dim = world.provider.dimensionId;
        if (event.phase == TickEvent.Phase.START) {
            for (int layer = 0; layer < 2; ++layer) {
                if (this.particles[layer].containsKey(dim)) {
                    final ArrayList<EntityFX> parts = this.particles[layer].get(dim);
                    for (int j = 0; j < parts.size(); ++j) {
                        final EntityFX entityfx = parts.get(j);
                        try {
                            if (entityfx != null) {
                            	MagicCookie.log.warn("Updating entityFX");
                                entityfx.onUpdate();
                            }
                        }
                        catch (Throwable throwable) {
                            final CrashReport crashreport = CrashReport.makeCrashReport(throwable, "Ticking Particle");
                            final CrashReportCategory crashreportcategory = crashreport.makeCategory("Particle being ticked");
                            crashreportcategory.addCrashSectionCallable("Particle", (Callable)new Callable() {
                                @Override
                                public String call() {
                                    return entityfx.toString();
                                }
                            });
                            crashreportcategory.addCrashSectionCallable("Particle Type", (Callable)new Callable() {
                                @Override
                                public String call() {
                                    return "ENTITY_PARTICLE_TEXTURE";
                                }
                            });
                            throw new ReportedException(crashreport);
                        }
                        if (entityfx == null || entityfx.isDead) {
                            parts.remove(j--);
                            this.particles[layer].put(dim, parts);
                        }
                    }
                }
            }
        }
    }
    
    static {
        ParticleEngine.instance = new ParticleEngine();
        particleTexture = new ResourceLocation("magiccookie", "textures/misc/particles.png");
    }
}

 

[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_3387 : KILL THE PARTICLE if this is true:13 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_3083 : KILL THE PARTICLE if this is true:13 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_80 : KILL THE PARTICLE if this is true:12 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1451 : KILL THE PARTICLE if this is true:12 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4006 : KILL THE PARTICLE if this is true:12 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4829 : KILL THE PARTICLE if this is true:11 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2430 : KILL THE PARTICLE if this is true:11 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2702 : KILL THE PARTICLE if this is true:11 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2586 : KILL THE PARTICLE if this is true:10 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2461 : KILL THE PARTICLE if this is true:9 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2344 : KILL THE PARTICLE if this is true:7 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_653 : KILL THE PARTICLE if this is true:6 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2963 : KILL THE PARTICLE if this is true:5 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2918 : KILL THE PARTICLE if this is true:4 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1342 : KILL THE PARTICLE if this is true:3 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_3854 : KILL THE PARTICLE if this is true:2 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2495 : KILL THE PARTICLE if this is true:2 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4915 : KILL THE PARTICLE if this is true:2 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2479 : KILL THE PARTICLE if this is true:1 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4367 : KILL THE PARTICLE if this is true:0 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1390 : KILL THE PARTICLE if this is true:0 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2389 : KILL THE PARTICLE if this is true:0 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1827 : KILL THE PARTICLE if this is true:18 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1827 : KILL THE PARTICLE!
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1191 : KILL THE PARTICLE if this is true:17 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1890 : KILL THE PARTICLE if this is true:16 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2403 : KILL THE PARTICLE if this is true:16 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2161 : KILL THE PARTICLE if this is true:16 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4828 : KILL THE PARTICLE if this is true:16 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1549 : KILL THE PARTICLE if this is true:16 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4037 : KILL THE PARTICLE if this is true:16 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1712 : KILL THE PARTICLE if this is true:16 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_904 : KILL THE PARTICLE if this is true:15 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_3387 : KILL THE PARTICLE if this is true:14 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_3083 : KILL THE PARTICLE if this is true:14 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_80 : KILL THE PARTICLE if this is true:13 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1451 : KILL THE PARTICLE if this is true:13 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4006 : KILL THE PARTICLE if this is true:13 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4829 : KILL THE PARTICLE if this is true:12 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2430 : KILL THE PARTICLE if this is true:12 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2702 : KILL THE PARTICLE if this is true:12 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2586 : KILL THE PARTICLE if this is true:11 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2461 : KILL THE PARTICLE if this is true:10 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2344 : KILL THE PARTICLE if this is true:8 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_653 : KILL THE PARTICLE if this is true:7 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2963 : KILL THE PARTICLE if this is true:6 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2918 : KILL THE PARTICLE if this is true:5 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1342 : KILL THE PARTICLE if this is true:4 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_3854 : KILL THE PARTICLE if this is true:3 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2495 : KILL THE PARTICLE if this is true:3 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4915 : KILL THE PARTICLE if this is true:3 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2479 : KILL THE PARTICLE if this is true:2 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4367 : KILL THE PARTICLE if this is true:1 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1390 : KILL THE PARTICLE if this is true:1 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2389 : KILL THE PARTICLE if this is true:1 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_248 : KILL THE PARTICLE if this is true:0 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_3926 : KILL THE PARTICLE if this is true:0 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1191 : KILL THE PARTICLE if this is true:18 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1191 : KILL THE PARTICLE!
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1890 : KILL THE PARTICLE if this is true:17 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2403 : KILL THE PARTICLE if this is true:17 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2161 : KILL THE PARTICLE if this is true:17 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4828 : KILL THE PARTICLE if this is true:17 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1549 : KILL THE PARTICLE if this is true:17 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4037 : KILL THE PARTICLE if this is true:17 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1712 : KILL THE PARTICLE if this is true:17 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_904 : KILL THE PARTICLE if this is true:16 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_3387 : KILL THE PARTICLE if this is true:15 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_3083 : KILL THE PARTICLE if this is true:15 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_80 : KILL THE PARTICLE if this is true:14 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1451 : KILL THE PARTICLE if this is true:14 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4006 : KILL THE PARTICLE if this is true:14 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4829 : KILL THE PARTICLE if this is true:13 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2430 : KILL THE PARTICLE if this is true:13 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2702 : KILL THE PARTICLE if this is true:13 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2586 : KILL THE PARTICLE if this is true:12 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2461 : KILL THE PARTICLE if this is true:11 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2344 : KILL THE PARTICLE if this is true:9 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_653 : KILL THE PARTICLE if this is true:8 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2963 : KILL THE PARTICLE if this is true:7 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2918 : KILL THE PARTICLE if this is true:6 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1342 : KILL THE PARTICLE if this is true:5 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_3854 : KILL THE PARTICLE if this is true:4 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2495 : KILL THE PARTICLE if this is true:4 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4915 : KILL THE PARTICLE if this is true:4 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2479 : KILL THE PARTICLE if this is true:3 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4367 : KILL THE PARTICLE if this is true:2 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1390 : KILL THE PARTICLE if this is true:2 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2389 : KILL THE PARTICLE if this is true:2 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_248 : KILL THE PARTICLE if this is true:1 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_3926 : KILL THE PARTICLE if this is true:1 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1005 : KILL THE PARTICLE if this is true:0 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1890 : KILL THE PARTICLE if this is true:18 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1890 : KILL THE PARTICLE!
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2403 : KILL THE PARTICLE if this is true:18 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2403 : KILL THE PARTICLE!
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2161 : KILL THE PARTICLE if this is true:18 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2161 : KILL THE PARTICLE!
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4828 : KILL THE PARTICLE if this is true:18 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4828 : KILL THE PARTICLE!
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1549 : KILL THE PARTICLE if this is true:18 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1549 : KILL THE PARTICLE!
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4037 : KILL THE PARTICLE if this is true:18 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4037 : KILL THE PARTICLE!
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1712 : KILL THE PARTICLE if this is true:18 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1712 : KILL THE PARTICLE!
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_904 : KILL THE PARTICLE if this is true:17 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_3387 : KILL THE PARTICLE if this is true:16 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_3083 : KILL THE PARTICLE if this is true:16 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_80 : KILL THE PARTICLE if this is true:15 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1451 : KILL THE PARTICLE if this is true:15 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4006 : KILL THE PARTICLE if this is true:15 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4829 : KILL THE PARTICLE if this is true:14 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2430 : KILL THE PARTICLE if this is true:14 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2702 : KILL THE PARTICLE if this is true:14 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2586 : KILL THE PARTICLE if this is true:13 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2461 : KILL THE PARTICLE if this is true:12 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2344 : KILL THE PARTICLE if this is true:10 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_653 : KILL THE PARTICLE if this is true:9 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2963 : KILL THE PARTICLE if this is true:8 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2918 : KILL THE PARTICLE if this is true:7 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1342 : KILL THE PARTICLE if this is true:6 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_3854 : KILL THE PARTICLE if this is true:5 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2495 : KILL THE PARTICLE if this is true:5 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4915 : KILL THE PARTICLE if this is true:5 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2479 : KILL THE PARTICLE if this is true:4 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4367 : KILL THE PARTICLE if this is true:3 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1390 : KILL THE PARTICLE if this is true:3 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2389 : KILL THE PARTICLE if this is true:3 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_248 : KILL THE PARTICLE if this is true:2 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_3926 : KILL THE PARTICLE if this is true:2 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1005 : KILL THE PARTICLE if this is true:1 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4654 : KILL THE PARTICLE if this is true:0 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1682 : KILL THE PARTICLE if this is true:0 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Calling onRenderWorldLast
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_904 Rendering called iteration = 2
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_3387 Rendering called iteration = 2
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_3083 Rendering called iteration = 2
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_80 Rendering called iteration = 2
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1451 Rendering called iteration = 2
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4006 Rendering called iteration = 2
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4829 Rendering called iteration = 2
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2430 Rendering called iteration = 2
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2702 Rendering called iteration = 1
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2586 Rendering called iteration = 1
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2461 Rendering called iteration = 1
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2344 Rendering called iteration = 1
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_653 Rendering called iteration = 1
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2963 Rendering called iteration = 1
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2918 Rendering called iteration = 1
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1342 Rendering called iteration = 1
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_3854 Rendering called iteration = 1
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2495 Rendering called iteration = 1
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4915 Rendering called iteration = 0
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2479 Rendering called iteration = 0
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4367 Rendering called iteration = 0
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1390 Rendering called iteration = 0
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2389 Rendering called iteration = 0
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_248 Rendering called iteration = 0
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_3926 Rendering called iteration = 0
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1005 Rendering called iteration = 0
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4654 Rendering called iteration = 0
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1682 Rendering called iteration = 0
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_904 : KILL THE PARTICLE if this is true:18 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_904 : KILL THE PARTICLE!
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_3387 : KILL THE PARTICLE if this is true:17 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_3083 : KILL THE PARTICLE if this is true:17 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_80 : KILL THE PARTICLE if this is true:16 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1451 : KILL THE PARTICLE if this is true:16 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4006 : KILL THE PARTICLE if this is true:16 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4829 : KILL THE PARTICLE if this is true:15 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2430 : KILL THE PARTICLE if this is true:15 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2702 : KILL THE PARTICLE if this is true:15 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2586 : KILL THE PARTICLE if this is true:14 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2461 : KILL THE PARTICLE if this is true:13 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2344 : KILL THE PARTICLE if this is true:11 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_653 : KILL THE PARTICLE if this is true:10 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2963 : KILL THE PARTICLE if this is true:9 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2918 : KILL THE PARTICLE if this is true:8 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1342 : KILL THE PARTICLE if this is true:7 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_3854 : KILL THE PARTICLE if this is true:6 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2495 : KILL THE PARTICLE if this is true:6 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4915 : KILL THE PARTICLE if this is true:6 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2479 : KILL THE PARTICLE if this is true:5 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4367 : KILL THE PARTICLE if this is true:4 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1390 : KILL THE PARTICLE if this is true:4 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2389 : KILL THE PARTICLE if this is true:4 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_248 : KILL THE PARTICLE if this is true:3 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_3926 : KILL THE PARTICLE if this is true:3 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1005 : KILL THE PARTICLE if this is true:2 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4654 : KILL THE PARTICLE if this is true:1 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1682 : KILL THE PARTICLE if this is true:1 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_3387 : KILL THE PARTICLE if this is true:18 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_3387 : KILL THE PARTICLE!
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_3083 : KILL THE PARTICLE if this is true:18 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_3083 : KILL THE PARTICLE!
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_80 : KILL THE PARTICLE if this is true:17 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1451 : KILL THE PARTICLE if this is true:17 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4006 : KILL THE PARTICLE if this is true:17 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4829 : KILL THE PARTICLE if this is true:16 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2430 : KILL THE PARTICLE if this is true:16 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2702 : KILL THE PARTICLE if this is true:16 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2586 : KILL THE PARTICLE if this is true:15 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2461 : KILL THE PARTICLE if this is true:14 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2344 : KILL THE PARTICLE if this is true:12 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_653 : KILL THE PARTICLE if this is true:11 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2963 : KILL THE PARTICLE if this is true:10 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2918 : KILL THE PARTICLE if this is true:9 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1342 : KILL THE PARTICLE if this is true:8 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_3854 : KILL THE PARTICLE if this is true:7 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2495 : KILL THE PARTICLE if this is true:7 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4915 : KILL THE PARTICLE if this is true:7 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2479 : KILL THE PARTICLE if this is true:6 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4367 : KILL THE PARTICLE if this is true:5 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1390 : KILL THE PARTICLE if this is true:5 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2389 : KILL THE PARTICLE if this is true:5 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_248 : KILL THE PARTICLE if this is true:4 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_3926 : KILL THE PARTICLE if this is true:4 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1005 : KILL THE PARTICLE if this is true:3 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4654 : KILL THE PARTICLE if this is true:2 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1682 : KILL THE PARTICLE if this is true:2 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1397 : KILL THE PARTICLE if this is true:0 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_80 : KILL THE PARTICLE if this is true:18 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_80 : KILL THE PARTICLE!
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1451 : KILL THE PARTICLE if this is true:18 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1451 : KILL THE PARTICLE!
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4006 : KILL THE PARTICLE if this is true:18 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4006 : KILL THE PARTICLE!
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4829 : KILL THE PARTICLE if this is true:17 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2430 : KILL THE PARTICLE if this is true:17 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2702 : KILL THE PARTICLE if this is true:17 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2586 : KILL THE PARTICLE if this is true:16 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2461 : KILL THE PARTICLE if this is true:15 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2344 : KILL THE PARTICLE if this is true:13 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_653 : KILL THE PARTICLE if this is true:12 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2963 : KILL THE PARTICLE if this is true:11 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2918 : KILL THE PARTICLE if this is true:10 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1342 : KILL THE PARTICLE if this is true:9 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_3854 : KILL THE PARTICLE if this is true:8 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2495 : KILL THE PARTICLE if this is true:8 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4915 : KILL THE PARTICLE if this is true:8 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2479 : KILL THE PARTICLE if this is true:7 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4367 : KILL THE PARTICLE if this is true:6 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1390 : KILL THE PARTICLE if this is true:6 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2389 : KILL THE PARTICLE if this is true:6 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_248 : KILL THE PARTICLE if this is true:5 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_3926 : KILL THE PARTICLE if this is true:5 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1005 : KILL THE PARTICLE if this is true:4 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4654 : KILL THE PARTICLE if this is true:3 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1682 : KILL THE PARTICLE if this is true:3 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1397 : KILL THE PARTICLE if this is true:1 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4829 : KILL THE PARTICLE if this is true:18 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4829 : KILL THE PARTICLE!
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2430 : KILL THE PARTICLE if this is true:18 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2430 : KILL THE PARTICLE!
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2702 : KILL THE PARTICLE if this is true:18 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2702 : KILL THE PARTICLE!
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2586 : KILL THE PARTICLE if this is true:17 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2461 : KILL THE PARTICLE if this is true:16 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2344 : KILL THE PARTICLE if this is true:14 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_653 : KILL THE PARTICLE if this is true:13 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2963 : KILL THE PARTICLE if this is true:12 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2918 : KILL THE PARTICLE if this is true:11 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1342 : KILL THE PARTICLE if this is true:10 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_3854 : KILL THE PARTICLE if this is true:9 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2495 : KILL THE PARTICLE if this is true:9 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4915 : KILL THE PARTICLE if this is true:9 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2479 : KILL THE PARTICLE if this is true:8 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4367 : KILL THE PARTICLE if this is true:7 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1390 : KILL THE PARTICLE if this is true:7 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2389 : KILL THE PARTICLE if this is true:7 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_248 : KILL THE PARTICLE if this is true:6 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_3926 : KILL THE PARTICLE if this is true:6 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1005 : KILL THE PARTICLE if this is true:5 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4654 : KILL THE PARTICLE if this is true:4 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1682 : KILL THE PARTICLE if this is true:4 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1397 : KILL THE PARTICLE if this is true:2 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2586 : KILL THE PARTICLE if this is true:18 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2586 : KILL THE PARTICLE!
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2461 : KILL THE PARTICLE if this is true:17 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2344 : KILL THE PARTICLE if this is true:15 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_653 : KILL THE PARTICLE if this is true:14 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2963 : KILL THE PARTICLE if this is true:13 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2918 : KILL THE PARTICLE if this is true:12 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1342 : KILL THE PARTICLE if this is true:11 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_3854 : KILL THE PARTICLE if this is true:10 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2495 : KILL THE PARTICLE if this is true:10 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4915 : KILL THE PARTICLE if this is true:10 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2479 : KILL THE PARTICLE if this is true:9 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4367 : KILL THE PARTICLE if this is true:8 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1390 : KILL THE PARTICLE if this is true:8 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2389 : KILL THE PARTICLE if this is true:8 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_248 : KILL THE PARTICLE if this is true:7 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_3926 : KILL THE PARTICLE if this is true:7 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1005 : KILL THE PARTICLE if this is true:6 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4654 : KILL THE PARTICLE if this is true:5 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1682 : KILL THE PARTICLE if this is true:5 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1397 : KILL THE PARTICLE if this is true:3 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Calling onRenderWorldLast
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2461 Rendering called iteration = 2
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2344 Rendering called iteration = 2
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_653 Rendering called iteration = 2
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2963 Rendering called iteration = 2
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2918 Rendering called iteration = 2
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1342 Rendering called iteration = 2
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_3854 Rendering called iteration = 2
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2495 Rendering called iteration = 2
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4915 Rendering called iteration = 1
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2479 Rendering called iteration = 1
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4367 Rendering called iteration = 1
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1390 Rendering called iteration = 1
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2389 Rendering called iteration = 1
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_248 Rendering called iteration = 1
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_3926 Rendering called iteration = 1
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1005 Rendering called iteration = 1
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4654 Rendering called iteration = 1
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1682 Rendering called iteration = 1
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1397 Rendering called iteration = 0
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2461 : KILL THE PARTICLE if this is true:18 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2461 : KILL THE PARTICLE!
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2344 : KILL THE PARTICLE if this is true:16 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_653 : KILL THE PARTICLE if this is true:15 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2963 : KILL THE PARTICLE if this is true:14 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2918 : KILL THE PARTICLE if this is true:13 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1342 : KILL THE PARTICLE if this is true:12 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_3854 : KILL THE PARTICLE if this is true:11 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2495 : KILL THE PARTICLE if this is true:11 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4915 : KILL THE PARTICLE if this is true:11 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2479 : KILL THE PARTICLE if this is true:10 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4367 : KILL THE PARTICLE if this is true:9 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1390 : KILL THE PARTICLE if this is true:9 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2389 : KILL THE PARTICLE if this is true:9 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_248 : KILL THE PARTICLE if this is true:8 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_3926 : KILL THE PARTICLE if this is true:8 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1005 : KILL THE PARTICLE if this is true:7 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4654 : KILL THE PARTICLE if this is true:6 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1682 : KILL THE PARTICLE if this is true:6 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1397 : KILL THE PARTICLE if this is true:4 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2344 : KILL THE PARTICLE if this is true:17 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_653 : KILL THE PARTICLE if this is true:16 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2963 : KILL THE PARTICLE if this is true:15 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2918 : KILL THE PARTICLE if this is true:14 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1342 : KILL THE PARTICLE if this is true:13 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_3854 : KILL THE PARTICLE if this is true:12 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2495 : KILL THE PARTICLE if this is true:12 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4915 : KILL THE PARTICLE if this is true:12 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2479 : KILL THE PARTICLE if this is true:11 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4367 : KILL THE PARTICLE if this is true:10 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1390 : KILL THE PARTICLE if this is true:10 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2389 : KILL THE PARTICLE if this is true:10 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_248 : KILL THE PARTICLE if this is true:9 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_3926 : KILL THE PARTICLE if this is true:9 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1005 : KILL THE PARTICLE if this is true:8 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4654 : KILL THE PARTICLE if this is true:7 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1682 : KILL THE PARTICLE if this is true:7 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1397 : KILL THE PARTICLE if this is true:5 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2344 : KILL THE PARTICLE if this is true:18 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2344 : KILL THE PARTICLE!
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_653 : KILL THE PARTICLE if this is true:17 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2963 : KILL THE PARTICLE if this is true:16 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2918 : KILL THE PARTICLE if this is true:15 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1342 : KILL THE PARTICLE if this is true:14 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_3854 : KILL THE PARTICLE if this is true:13 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2495 : KILL THE PARTICLE if this is true:13 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4915 : KILL THE PARTICLE if this is true:13 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2479 : KILL THE PARTICLE if this is true:12 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4367 : KILL THE PARTICLE if this is true:11 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1390 : KILL THE PARTICLE if this is true:11 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2389 : KILL THE PARTICLE if this is true:11 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_248 : KILL THE PARTICLE if this is true:10 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_3926 : KILL THE PARTICLE if this is true:10 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1005 : KILL THE PARTICLE if this is true:9 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4654 : KILL THE PARTICLE if this is true:8 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1682 : KILL THE PARTICLE if this is true:8 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1397 : KILL THE PARTICLE if this is true:6 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_653 : KILL THE PARTICLE if this is true:18 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_653 : KILL THE PARTICLE!
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2963 : KILL THE PARTICLE if this is true:17 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2918 : KILL THE PARTICLE if this is true:16 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1342 : KILL THE PARTICLE if this is true:15 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_3854 : KILL THE PARTICLE if this is true:14 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2495 : KILL THE PARTICLE if this is true:14 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4915 : KILL THE PARTICLE if this is true:14 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2479 : KILL THE PARTICLE if this is true:13 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4367 : KILL THE PARTICLE if this is true:12 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1390 : KILL THE PARTICLE if this is true:12 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2389 : KILL THE PARTICLE if this is true:12 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_248 : KILL THE PARTICLE if this is true:11 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_3926 : KILL THE PARTICLE if this is true:11 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1005 : KILL THE PARTICLE if this is true:10 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4654 : KILL THE PARTICLE if this is true:9 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1682 : KILL THE PARTICLE if this is true:9 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1397 : KILL THE PARTICLE if this is true:7 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Calling onRenderWorldLast
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2963 Rendering called iteration = 3
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2918 Rendering called iteration = 3
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1342 Rendering called iteration = 3
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_3854 Rendering called iteration = 3
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2495 Rendering called iteration = 3
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4915 Rendering called iteration = 2
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2479 Rendering called iteration = 2
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4367 Rendering called iteration = 2
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1390 Rendering called iteration = 2
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2389 Rendering called iteration = 2
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_248 Rendering called iteration = 2
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_3926 Rendering called iteration = 2
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1005 Rendering called iteration = 2
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4654 Rendering called iteration = 2
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1682 Rendering called iteration = 2
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1397 Rendering called iteration = 1
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2963 : KILL THE PARTICLE if this is true:18 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2963 : KILL THE PARTICLE!
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2918 : KILL THE PARTICLE if this is true:17 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1342 : KILL THE PARTICLE if this is true:16 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_3854 : KILL THE PARTICLE if this is true:15 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2495 : KILL THE PARTICLE if this is true:15 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4915 : KILL THE PARTICLE if this is true:15 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2479 : KILL THE PARTICLE if this is true:14 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4367 : KILL THE PARTICLE if this is true:13 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1390 : KILL THE PARTICLE if this is true:13 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2389 : KILL THE PARTICLE if this is true:13 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_248 : KILL THE PARTICLE if this is true:12 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_3926 : KILL THE PARTICLE if this is true:12 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1005 : KILL THE PARTICLE if this is true:11 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4654 : KILL THE PARTICLE if this is true:10 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1682 : KILL THE PARTICLE if this is true:10 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1397 : KILL THE PARTICLE if this is true:8 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2918 : KILL THE PARTICLE if this is true:18 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2918 : KILL THE PARTICLE!
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1342 : KILL THE PARTICLE if this is true:17 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_3854 : KILL THE PARTICLE if this is true:16 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2495 : KILL THE PARTICLE if this is true:16 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4915 : KILL THE PARTICLE if this is true:16 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2479 : KILL THE PARTICLE if this is true:15 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4367 : KILL THE PARTICLE if this is true:14 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1390 : KILL THE PARTICLE if this is true:14 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2389 : KILL THE PARTICLE if this is true:14 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_248 : KILL THE PARTICLE if this is true:13 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_3926 : KILL THE PARTICLE if this is true:13 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1005 : KILL THE PARTICLE if this is true:12 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4654 : KILL THE PARTICLE if this is true:11 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1682 : KILL THE PARTICLE if this is true:11 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1397 : KILL THE PARTICLE if this is true:9 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Calling onRenderWorldLast
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1342 Rendering called iteration = 4
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_3854 Rendering called iteration = 4
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2495 Rendering called iteration = 4
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4915 Rendering called iteration = 3
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2479 Rendering called iteration = 3
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4367 Rendering called iteration = 3
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1390 Rendering called iteration = 3
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2389 Rendering called iteration = 3
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_248 Rendering called iteration = 3
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_3926 Rendering called iteration = 3
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1005 Rendering called iteration = 3
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4654 Rendering called iteration = 3
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1682 Rendering called iteration = 3
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1397 Rendering called iteration = 2
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1342 : KILL THE PARTICLE if this is true:18 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1342 : KILL THE PARTICLE!
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_3854 : KILL THE PARTICLE if this is true:17 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2495 : KILL THE PARTICLE if this is true:17 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4915 : KILL THE PARTICLE if this is true:17 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2479 : KILL THE PARTICLE if this is true:16 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4367 : KILL THE PARTICLE if this is true:15 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1390 : KILL THE PARTICLE if this is true:15 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2389 : KILL THE PARTICLE if this is true:15 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_248 : KILL THE PARTICLE if this is true:14 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_3926 : KILL THE PARTICLE if this is true:14 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1005 : KILL THE PARTICLE if this is true:13 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4654 : KILL THE PARTICLE if this is true:12 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1682 : KILL THE PARTICLE if this is true:12 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1397 : KILL THE PARTICLE if this is true:10 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_3854 : KILL THE PARTICLE if this is true:18 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_3854 : KILL THE PARTICLE!
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2495 : KILL THE PARTICLE if this is true:18 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2495 : KILL THE PARTICLE!
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4915 : KILL THE PARTICLE if this is true:18 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4915 : KILL THE PARTICLE!
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2479 : KILL THE PARTICLE if this is true:17 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4367 : KILL THE PARTICLE if this is true:16 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1390 : KILL THE PARTICLE if this is true:16 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2389 : KILL THE PARTICLE if this is true:16 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_248 : KILL THE PARTICLE if this is true:15 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_3926 : KILL THE PARTICLE if this is true:15 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1005 : KILL THE PARTICLE if this is true:14 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4654 : KILL THE PARTICLE if this is true:13 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1682 : KILL THE PARTICLE if this is true:13 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1397 : KILL THE PARTICLE if this is true:11 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Calling onRenderWorldLast
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2479 Rendering called iteration = 4
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4367 Rendering called iteration = 4
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1390 Rendering called iteration = 4
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2389 Rendering called iteration = 4
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_248 Rendering called iteration = 4
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_3926 Rendering called iteration = 4
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1005 Rendering called iteration = 4
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4654 Rendering called iteration = 4
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1682 Rendering called iteration = 4
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1397 Rendering called iteration = 3
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2479 : KILL THE PARTICLE if this is true:18 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2479 : KILL THE PARTICLE!
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4367 : KILL THE PARTICLE if this is true:17 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1390 : KILL THE PARTICLE if this is true:17 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2389 : KILL THE PARTICLE if this is true:17 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_248 : KILL THE PARTICLE if this is true:16 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_3926 : KILL THE PARTICLE if this is true:16 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1005 : KILL THE PARTICLE if this is true:15 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4654 : KILL THE PARTICLE if this is true:14 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1682 : KILL THE PARTICLE if this is true:14 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1397 : KILL THE PARTICLE if this is true:12 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4367 : KILL THE PARTICLE if this is true:18 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4367 : KILL THE PARTICLE!
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1390 : KILL THE PARTICLE if this is true:18 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1390 : KILL THE PARTICLE!
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2389 : KILL THE PARTICLE if this is true:18 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_2389 : KILL THE PARTICLE!
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_248 : KILL THE PARTICLE if this is true:17 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_3926 : KILL THE PARTICLE if this is true:17 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1005 : KILL THE PARTICLE if this is true:16 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4654 : KILL THE PARTICLE if this is true:15 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1682 : KILL THE PARTICLE if this is true:15 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1397 : KILL THE PARTICLE if this is true:13 >= 18
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Calling onRenderWorldLast
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_248 Rendering called iteration = 5
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_3926 Rendering called iteration = 5
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1005 Rendering called iteration = 5
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_4654 Rendering called iteration = 5
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1682 Rendering called iteration = 5
[08:44:18] [Client thread/WARN] [MAGICCOOKIE]: Particle_1397 Rendering called iteration = 4
[08:44:19] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:19] [Client thread/WARN] [MAGICCOOKIE]: Particle_248 : KILL THE PARTICLE if this is true:18 >= 18
[08:44:19] [Client thread/WARN] [MAGICCOOKIE]: Particle_248 : KILL THE PARTICLE!
[08:44:19] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:19] [Client thread/WARN] [MAGICCOOKIE]: Particle_3926 : KILL THE PARTICLE if this is true:18 >= 18
[08:44:19] [Client thread/WARN] [MAGICCOOKIE]: Particle_3926 : KILL THE PARTICLE!
[08:44:19] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:19] [Client thread/WARN] [MAGICCOOKIE]: Particle_1005 : KILL THE PARTICLE if this is true:17 >= 18
[08:44:19] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:19] [Client thread/WARN] [MAGICCOOKIE]: Particle_4654 : KILL THE PARTICLE if this is true:16 >= 18
[08:44:19] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:19] [Client thread/WARN] [MAGICCOOKIE]: Particle_1682 : KILL THE PARTICLE if this is true:16 >= 18
[08:44:19] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:19] [Client thread/WARN] [MAGICCOOKIE]: Particle_1397 : KILL THE PARTICLE if this is true:14 >= 18
[08:44:19] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:19] [Client thread/WARN] [MAGICCOOKIE]: Particle_1005 : KILL THE PARTICLE if this is true:18 >= 18
[08:44:19] [Client thread/WARN] [MAGICCOOKIE]: Particle_1005 : KILL THE PARTICLE!
[08:44:19] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:19] [Client thread/WARN] [MAGICCOOKIE]: Particle_4654 : KILL THE PARTICLE if this is true:17 >= 18
[08:44:19] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:19] [Client thread/WARN] [MAGICCOOKIE]: Particle_1682 : KILL THE PARTICLE if this is true:17 >= 18
[08:44:19] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:19] [Client thread/WARN] [MAGICCOOKIE]: Particle_1397 : KILL THE PARTICLE if this is true:15 >= 18
[08:44:19] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:19] [Client thread/WARN] [MAGICCOOKIE]: Particle_4654 : KILL THE PARTICLE if this is true:18 >= 18
[08:44:19] [Client thread/WARN] [MAGICCOOKIE]: Particle_4654 : KILL THE PARTICLE!
[08:44:19] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:19] [Client thread/WARN] [MAGICCOOKIE]: Particle_1682 : KILL THE PARTICLE if this is true:18 >= 18
[08:44:19] [Client thread/WARN] [MAGICCOOKIE]: Particle_1682 : KILL THE PARTICLE!
[08:44:19] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:19] [Client thread/WARN] [MAGICCOOKIE]: Particle_1397 : KILL THE PARTICLE if this is true:16 >= 18
[08:44:19] [Client thread/WARN] [MAGICCOOKIE]: Calling onRenderWorldLast
[08:44:19] [Client thread/WARN] [MAGICCOOKIE]: Particle_1397 Rendering called iteration = 5
[08:44:19] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:19] [Client thread/WARN] [MAGICCOOKIE]: Particle_1397 : KILL THE PARTICLE if this is true:17 >= 18
[08:44:19] [Client thread/WARN] [MAGICCOOKIE]: Updating entityFX
[08:44:19] [Client thread/WARN] [MAGICCOOKIE]: Particle_1397 : KILL THE PARTICLE if this is true:18 >= 18
[08:44:19] [Client thread/WARN] [MAGICCOOKIE]: Particle_1397 : KILL THE PARTICLE!
[08:44:19] [Client thread/WARN] [MAGICCOOKIE]: Calling onRenderWorldLast

 

How much wood could a woodchuck chuck if a wood chuck could chuck wood - Guybrush Treepwood

 

I wrote my own mod ish... still a few bugs to fix. http://thaumcraft.duckdns.org/downloads/MagicCookies-1.0.6.4.jar

Posted

Never mind. I solved it.

 

Aparently having your browser open on a dynmap on a pretty crappy pc impacts how often minecraft will render.

My true fps were lower than the debug screen reported. When running on a "clean from junk programs running" it rendered exactly as it should.

 

Thanks for taking the effort to look into this.

How much wood could a woodchuck chuck if a wood chuck could chuck wood - Guybrush Treepwood

 

I wrote my own mod ish... still a few bugs to fix. http://thaumcraft.duckdns.org/downloads/MagicCookies-1.0.6.4.jar

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.