Jump to content

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


Tschallacka

Recommended Posts

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

Link to comment
Share on other sites

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

Link to comment
Share on other sites

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



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • [01:30:06] [main/INFO]: ModLauncher running: args [--username, AkadieL, --version, forge-47.2.0, --gameDir, C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized, --assetsDir, C:\Users\Administrator\curseforge\minecraft\Install\assets, --assetIndex, 5, --uuid, b68ea54ae6484a0e8acb115f88c9aea5, --accessToken, ????????, --clientId, 28d704-b58c91-549ecf-a85a34-9fb39c, --xuid, 2533275030291833, --userType, msa, --versionType, release, --width, 1024, --height, 768, --launchTarget, forgeclient, --fml.forgeVersion, 47.2.0, --fml.mcVersion, 1.20.1, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20230612.114412] [01:30:06] [main/INFO]: ModLauncher 10.0.9+10.0.9+main.dcd20f30 starting: java version 17.0.8 by Eclipse Adoptium; OS Windows 10 arch amd64 version 10.0 [01:30:07] [main/INFO]: Loading ImmediateWindowProvider fmlearlywindow [01:30:07] [main/INFO]: Trying GL version 4.6 [01:30:07] [main/INFO]: Requested GL version 4.6 got version 4.6 [01:30:07] [main/INFO]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/C:/Users/Administrator/curseforge/minecraft/Install/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%23100!/ Service=ModLauncher Env=CLIENT [01:30:07] [pool-2-thread-1/INFO]: GL info: NVIDIA GeForce RTX 3060/PCIe/SSE2 GL version 4.6.0 NVIDIA 560.94, NVIDIA Corporation [01:30:08] [main/INFO]: Found mod file AdvancementPlaques-1.20.1-forge-1.5.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file AI-Improvements-1.20-0.5.2.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file AirHop-v8.0.2-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file alexscaves-1.1.0.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file alexsmobs-1.22.7.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file AmbientSounds_FORGE_v6.0.2_mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file AnvilNeverTooExpensive-1.20.1-1.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file appleskin-forge-mc1.20.1-2.5.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file Aquaculture-1.20.1-2.5.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file aquaculture_delight_1.0.0_forge_1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file aquamirae-6.API15.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file astemirlib-1.20.1-1.25.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file AxesAreWeapons-1.7.3-forge-1.20.2.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file balm-forge-1.20.1-7.3.6-all.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file bellsandwhistles-0.4.3-1.20.x.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file BetterAdvancements-1.20.1-0.3.2.161.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file betterarcheology-1.1.9-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file BetterCompatibilityChecker-forge-4.0.8+mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file BetterPingDisplay-1.20.1-1.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file BetterTridents-v8.0.1-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file biomespawnpoint-1.20.1-2.2.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file blockui-1.20.1-1.0.156-RELEASE.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file blue_skies-1.20.1-1.3.31.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file Bookshelf-Forge-1.20.1-20.2.13.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file caelus-forge-3.2.0+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file canary-mc1.20.1-0.3.3.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file catalogue-forge-1.20.1-1.8.0.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file Chimes-v2.0.1-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file Choup's Drakvyrn Mod for 1.20.1 (v2.4.0).jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file Chunk-Pregenerator-1.20-4.4.3.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file chunkloaders-1.2.8a-forge-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file citadel-2.5.3-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file clickadv-1.20.1-3.8.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file cloth-config-11.1.118-forge.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file Clumps-forge-1.20.1-12.0.0.4.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file collective-1.20.1-7.64.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file comforts-forge-6.3.5+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file Controlling-forge-1.20.1-12.0.2.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file cookingforblockheads-forge-1.20.1-16.0.6.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file CorgiLib-forge-1.20.1-4.0.1.3.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file corn_delight-1.0.4-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file coroutil-forge-1.20.1-1.3.7.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file cosmeticarmorreworked-1.20.1-v1a.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file CrabbersDelight-1.20.1-1.1.5.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file CraftTweaker-forge-1.20.1-14.0.40.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file create-1.20.1-0.5.1.f.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file createaddition-1.20.1-1.2.4.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file CreativeCore_FORGE_v2.11.30_mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file creeperoverhaul-3.0.2-forge.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file ctov-forge-3.4.3.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file cuisinedelight-1.1.14.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file cupboard-1.20.1-2.6.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file curios-forge-5.9.1+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file customcameraview-forge-1.20.1-1.0.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file DamageVignette-2.0.2-forge+mc1.20.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file deathbackup-1.20.1-3.3.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file deeperdarker-forge-1.20.1-1.2.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file dimensionviewer-1.20-1.4.0.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file Disenchanting-forge-1.20.1-2.2.4.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file DoggyTalentsNext-1.20.1-1.18.18.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file domum_ornamentum-1.20.1-1.0.186-RELEASE-universal.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file doubledoors-1.20.1-5.7.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file dummmmmmy-1.20-1.8.17b.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file DungeonsArise-1.20.x-2.1.58-release.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file DungeonsAriseSevenSeas-1.20.x-1.0.2-forge.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file EasierSleeping-1.20.1-2.1.3.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file easy-villagers-forge-1.20.1-1.1.23.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file easy_mob_farm_1.20.1-7.1.0.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file easy_npc-forge-1.20.1-5.6.0.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file easynetheritev1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file EasyShulkerBoxes-v8.0.1-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file elytraslot-forge-6.4.0+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file embeddium-0.3.31+mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file embeddiumplus-1.20.1-v1.2.13.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file EnchantingInfuser-v8.0.3-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file EnchantmentDescriptions-Forge-1.20.1-17.0.16.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file endersdelight-1.20.1-1.0.3.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file Enhanced_Celestials-forge-1.20.1-5.0.0.4.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file entityculling-forge-1.6.6-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file EquipmentCompare-1.20.1-forge-1.3.7.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file ExplorersCompass-1.20.1-1.3.3-forge.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file Fallingleaves-1.20.1-2.1.0.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file FallingTree-1.20.1-4.3.4.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file fancymenu_forge_3.2.3_MC_1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file Fantastic Remastered Structures 1.20+1.20.6-0.5 For+fab.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file FarmersDelight-1.20.1-1.2.4.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file farmingforblockheads-forge-1.20.1-14.0.2.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file farsight-1.20.1-3.6.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file FastFurnace-1.20.1-8.0.2.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file FastLeafDecay-32.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file fastpaintings-1.20-1.2.7.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file ferritecore-6.0.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file fish_of_thieves-mc1.20.1-v3.0.7-forge.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file fixexperiencebug-1.20-46.2.2.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file framework-forge-1.20.1-0.7.6.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file FriendlyFire-Forge-1.20.1-18.0.7.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file FriendlyGriefing-1.20-1.0.2.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file friendsandfoes-forge-mc1.20.1-2.0.10.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file geckolib-forge-1.20.1-4.4.7.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file GeckoLibOculusCompat-Forge-1.0.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file goblintraders-forge-1.20.1-1.9.3.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file guccivuitton-1.20.1-0.2.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file handcrafted-forge-1.20.1-3.0.6.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file highlight-forge-1.20-2.0.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file Highlighter-1.20.1-forge-1.1.9.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file hitindication-1.20.1-1.4.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file Iceberg-1.20.1-forge-1.1.21.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file IllagerInvasion-v8.0.5-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file Incendium_1.20.x_v5.3.5.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file inventoryessentials-forge-1.20.1-8.2.6.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file inventoryhud.forge.1.20.1-3.4.26.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file inventorysorter-1.20.1-23.0.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file ItemPhysicLite_FORGE_v1.6.4_mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file Jade-1.20.1-forge-11.7.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file jei-1.20.1-forge-15.3.0.4.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file JustEnoughResources-1.20.1-1.4.0.247.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file konkrete_forge_1.8.0_MC_1.20-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file lradd-1.20.1-0.2.3.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file lucky-block-forge-1.20.1-13.0.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file lukis-grand-capitals-1.0.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file MaxEnchantX-1.20.X-1.3-Forge.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file mcw-bridges-3.0.0-mc1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file mcw-doors-1.1.1forge-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file mcw-lights-1.1.0-mc1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file melody_forge_1.0.3_MC_1.20.1-1.20.4.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file modnametooltip-1.20.1-1.20.0.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file moonlight-1.20-2.12.2-forge.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file MouseTweaks-forge-mc1.20-2.25.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file mysterious_mountain_lib-1.4.7-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file nethersdelight-1.20.1-4.0.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file obscure_api-15.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file oceansdelight-1.0.2-1.20.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file oculus-mc1.20.1-1.6.15a.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file okzoomer-forge-1.20-3.0.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file Placebo-1.20.1-8.6.2.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file puzzledungeon-forge-1.20.1-1.2.0.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file PuzzlesLib-v8.1.20-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file PuzzlesLib-v8.1.24-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file Quark-4.0-436.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file RegionsUnexploredForge-0.5.3.1+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file resourcefulconfig-forge-1.20.1-2.1.2.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file resourcefullib-forge-1.20.1-2.1.25.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file sliceanddice-forge-3.2.0.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file supermartijn642configlib-1.1.8-forge-mc1.20.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file supermartijn642corelib-1.1.17-forge-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file tact-1.0.9+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file tacz-1.20.1-1.0.3-all.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file TerraBlender-forge-1.20.1-3.0.1.4.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file Terralith_1.20_v2.5.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file The_Undergarden-1.20.1-0.8.14.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file tlc_forge-1.0.3-R-1.20.X.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file torchmaster-20.1.6.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file ToughAsNails-1.20.1-9.0.0.96.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file travelersbackpack-forge-1.20.1-9.1.15.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file TravelersTitles-1.20-Forge-4.0.2.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file undergarden_delight_1.0.0_forge_1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file UniversalEnchants-v8.0.0-1.20.1-Forge.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file waystones-forge-1.20-14.1.3.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file WitherSkeletonTweaks-1.20.1-9.1.0.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file worldedit-mod-7.2.15.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file wso16-forge-1.1.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file Xaeros_Minimap_24.2.0_Forge_1.20.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file xaeros_waystones_compability-1.0.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file XaerosWorldMap_1.37.8_Forge_1.20.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file YungsApi-1.20-Forge-4.0.5.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file YungsBetterDesertTemples-1.20-Forge-3.0.3.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file YungsBetterDungeons-1.20-Forge-4.0.4.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file YungsBetterJungleTemples-1.20-Forge-2.0.5.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file YungsBetterMineshafts-1.20-Forge-4.0.4.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file YungsBetterNetherFortresses-1.20-Forge-2.0.6.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file YungsBetterOceanMonuments-1.20-Forge-3.0.4.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file YungsBetterStrongholds-1.20-Forge-4.0.3.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file YungsBetterWitchHuts-1.20-Forge-3.0.3.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file YungsBridges-1.20-Forge-4.0.3.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file YungsExtras-1.20-Forge-4.0.3.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/INFO]: Found mod file Zeta-1.0-13.jar of type MOD with provider {mods folder locator at C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods} [01:30:08] [main/WARN]: Mod file C:\Users\Administrator\curseforge\minecraft\Install\libraries\net\minecraftforge\fmlcore\1.20.1-47.2.0\fmlcore-1.20.1-47.2.0.jar is missing mods.toml file [01:30:08] [main/WARN]: Mod file C:\Users\Administrator\curseforge\minecraft\Install\libraries\net\minecraftforge\javafmllanguage\1.20.1-47.2.0\javafmllanguage-1.20.1-47.2.0.jar is missing mods.toml file [01:30:08] [main/WARN]: Mod file C:\Users\Administrator\curseforge\minecraft\Install\libraries\net\minecraftforge\lowcodelanguage\1.20.1-47.2.0\lowcodelanguage-1.20.1-47.2.0.jar is missing mods.toml file [01:30:08] [main/WARN]: Mod file C:\Users\Administrator\curseforge\minecraft\Install\libraries\net\minecraftforge\mclanguage\1.20.1-47.2.0\mclanguage-1.20.1-47.2.0.jar is missing mods.toml file [01:30:08] [main/INFO]: Found mod file fmlcore-1.20.1-47.2.0.jar of type LIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@78c1a023 [01:30:08] [main/INFO]: Found mod file javafmllanguage-1.20.1-47.2.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@78c1a023 [01:30:08] [main/INFO]: Found mod file lowcodelanguage-1.20.1-47.2.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@78c1a023 [01:30:08] [main/INFO]: Found mod file mclanguage-1.20.1-47.2.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@78c1a023 [01:30:08] [main/INFO]: Found mod file client-1.20.1-20230612.114412-srg.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@78c1a023 [01:30:08] [main/INFO]: Found mod file forge-1.20.1-47.2.0-universal.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@78c1a023 [01:30:08] [main/WARN]: Attempted to select two dependency jars from JarJar which have the same identification: Mod File:  and Mod File: . Using Mod File:  [01:30:08] [main/WARN]: Attempted to select two dependency jars from JarJar which have the same identification: Mod File:  and Mod File: . Using Mod File:  [01:30:08] [main/WARN]: Attempted to select two dependency jars from JarJar which have the same identification: Mod File:  and Mod File: . Using Mod File:  [01:30:08] [main/WARN]: Attempted to select a dependency jar for JarJar which was passed in as source: resourcefullib. Using Mod File: C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized\mods\resourcefullib-forge-1.20.1-2.1.25.jar [01:30:08] [main/INFO]: Found 23 dependencies adding them to mods collection [01:30:08] [main/INFO]: Found mod file jctools-core-4.0.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@150ede8b [01:30:08] [main/INFO]: Found mod file MixinExtras-0.3.6.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@150ede8b [01:30:08] [main/INFO]: Found mod file mixinextras-forge-0.3.6.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@150ede8b [01:30:08] [main/INFO]: Found mod file kuma-api-forge-20.1.8+1.20.1.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@150ede8b [01:30:08] [main/INFO]: Found mod file puzzlesapi-forge-8.1.4.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@150ede8b [01:30:08] [main/INFO]: Found mod file MinecraftForgeAPI-1.20.1-1.0.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@150ede8b [01:30:08] [main/INFO]: Found mod file luaj-core-3.0.3.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@150ede8b [01:30:08] [main/INFO]: Found mod file mixinsquared-forge-0.1.2-beta.6.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@150ede8b [01:30:08] [main/INFO]: Found mod file yabn-1.0.3.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@150ede8b [01:30:08] [main/INFO]: Found mod file Registrate-MC1.20-1.3.11.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@150ede8b [01:30:08] [main/INFO]: Found mod file spectrelib-forge-0.13.15+1.20.1.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@150ede8b [01:30:08] [main/INFO]: Found mod file animated-gif-lib-for-java-animated-gif-lib-1.7.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@150ede8b [01:30:08] [main/INFO]: Found mod file mclib-20.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@150ede8b [01:30:08] [main/INFO]: Found mod file l2library-2.4.14-slim.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@150ede8b [01:30:08] [main/INFO]: Found mod file puzzlesaccessapi-forge-8.0.7.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@150ede8b [01:30:08] [main/INFO]: Found mod file l2serial-1.2.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@150ede8b [01:30:08] [main/INFO]: Found mod file flywheel-forge-1.20.1-0.6.10-7.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@150ede8b [01:30:08] [main/INFO]: Found mod file bytecodecs-1.0.2.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@150ede8b [01:30:08] [main/INFO]: Found mod file luaj-jse-3.0.3.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@150ede8b [01:30:08] [main/INFO]: Found mod file commons-math3-3.6.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@150ede8b [01:30:08] [main/INFO]: Found mod file MixinSquared-0.1.2-beta.6.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@150ede8b [01:30:08] [main/INFO]: Found mod file jcpp-1.4.14.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@150ede8b [01:30:08] [main/INFO]: Found mod file japng-0.5.3.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@150ede8b [01:30:09] [main/ERROR]: Missing or unsupported mandatory dependencies:     Mod ID: 'structure_gel', Requested by: 'blue_skies', Expected range: '[2.13.0,]', Actual version: '[MISSING]'     Mod ID: 'kotlinforforge', Requested by: 'sliceanddice', Expected range: '[4.3.0,)', Actual version: '[MISSING]'     Mod ID: 'searchables', Requested by: 'controlling', Expected range: '[1.0,)', Actual version: '[MISSING]' [01:30:11] [main/INFO]: Compatibility level set to JAVA_17 [01:30:11] [main/ERROR]: Mixin config geckoanimfix.forge.mixins.json does not specify "minVersion" property [01:30:11] [main/ERROR]: Mixin config okzoomer.mixins.json does not specify "minVersion" property [01:30:11] [main/INFO]: Launching target 'forgeclient' with arguments [--version, forge-47.2.0, --gameDir, C:\Users\Administrator\curseforge\minecraft\Instances\Alex's Caves Optimized, --assetsDir, C:\Users\Administrator\curseforge\minecraft\Install\assets, --uuid, b68ea54ae6484a0e8acb115f88c9aea5, --username, AkadieL, --assetIndex, 5, --accessToken, ????????, --clientId, 28d704-b58c91-549ecf-a85a34-9fb39c, --xuid, 2533275030291833, --userType, msa, --versionType, release, --width, 1024, --height, 768] [01:30:11] [main/INFO]: Loaded configuration file for Embeddium: 44 options available, 0 override(s) found [01:30:11] [main/INFO]: Searching for graphics cards... [01:30:11] [main/INFO]: Found graphics card: GraphicsAdapterInfo[vendor=NVIDIA, name=NVIDIA GeForce RTX 3060, version=DriverVersion=32.0.15.6094] [01:30:11] [main/WARN]: Embeddium has applied one or more workarounds to prevent crashes or other issues on your system: [NVIDIA_THREADED_OPTIMIZATIONS] [01:30:11] [main/WARN]: This is not necessarily an issue, but it may result in certain features or optimizations being disabled. You can sometimes fix these issues by upgrading your graphics driver. [01:30:11] [main/WARN]: Reference map 'handcrafted-forge-1.20.1-forge-refmap.json' for handcrafted.mixins.json could not be read. If this is a development environment you can ignore this message [01:30:11] [main/WARN]: Reference map 'yungsextras.refmap.json' for yungsextras.mixins.json could not be read. If this is a development environment you can ignore this message [01:30:11] [main/WARN]: Reference map 'yungsextras.refmap.json' for yungsextras_forge.mixins.json could not be read. If this is a development environment you can ignore this message [01:30:11] [main/WARN]: Reference map 'cuisinedelight.refmap.json' for cuisinedelight.mixins.json could not be read. If this is a development environment you can ignore this message [01:30:11] [main/WARN]: Reference map 'AxesAreWeapons-forge-refmap.json' for axesareweapons.forge.mixins.json could not be read. If this is a development environment you can ignore this message [01:30:11] [main/WARN]: Reference map '${refmap_target}refmap.json' for corgilib.forge.mixins.json could not be read. If this is a development environment you can ignore this message [01:30:11] [main/WARN]: Reference map 'fastpaintings-forge-refmap.json' for fastpaintings-forge.mixins.json could not be read. If this is a development environment you can ignore this message [01:30:11] [main/WARN]: Reference map 'guccivuitton.refmap.json' for guccivuitton.mixins.json could not be read. If this is a development environment you can ignore this message [01:30:11] [main/INFO]: Loaded configuration file for Canary: 116 options available, 0 override(s) found [01:30:11] [main/INFO]: Loading 2 mods:     - forge 47.2.0     - minecraft 1.20.1 [01:30:11] [main/WARN]: Reference map 'Aquamirae.refmap.json' for aquamirae.mixins.json could not be read. If this is a development environment you can ignore this message [01:30:11] [main/WARN]: Reference map 'cookingforblockheads.refmap.json' for cookingforblockheads.mixins.json could not be read. If this is a development environment you can ignore this message [01:30:11] [main/WARN]: Reference map 'LesRaisinsAddon_1201.refmap.json' for lradd.mixins.json could not be read. If this is a development environment you can ignore this message [01:30:11] [main/WARN]: Reference map 'coroutil.refmap.json' for coroutil.mixins.json could not be read. If this is a development environment you can ignore this message [01:30:12] [main/WARN]: Error loading class: dev/latvian/mods/kubejs/recipe/RecipesEventJS (java.lang.ClassNotFoundException: dev.latvian.mods.kubejs.recipe.RecipesEventJS) [01:30:12] [main/WARN]: @Mixin target dev.latvian.mods.kubejs.recipe.RecipesEventJS was not found sliceanddice.mixins.json:RecipeEventJSMixin [01:30:12] [main/WARN]: Error loading class: dev/emi/emi/screen/EmiScreenManager (java.lang.ClassNotFoundException: dev.emi.emi.screen.EmiScreenManager) [01:30:12] [main/WARN]: Error loading class: me/shedaniel/rei/impl/client/gui/ScreenOverlayImpl (java.lang.ClassNotFoundException: me.shedaniel.rei.impl.client.gui.ScreenOverlayImpl) [01:30:12] [main/WARN]: Error loading class: noobanidus/mods/lootr/config/ConfigManager (java.lang.ClassNotFoundException: noobanidus.mods.lootr.config.ConfigManager) [01:30:12] [main/ERROR]: Could not find embeddium mod, there is likely a dependency error. Skipping mixin application. [01:30:12] [main/INFO]: Initializing MixinExtras via com.llamalad7.mixinextras.service.MixinExtrasServiceImpl(version=0.3.6). [01:30:13] [pool-4-thread-1/WARN]: This is the stupidest thing I've ever made in Minecraft modding history...           Even if I check the log list, I don't know what the problem is. especially. [01:30:09] [Main/ERROR]: No mandatory dependency or not supported: Mode ID: 'structure_gel', requester: 'blue_skys', expected range: '[2.13.0,], actual version: '[missing]' Mode ID: 'kotlinforge', Requestor: 'slice and die', Expected range: '[4.3.0,]', Actual version: '[missing]' Mode ID: 'Searchable', Requestor: 'In Control', Expected Range: '[1.0,]', Actual Version: '[Omitted]'   I've been looking for things I need in this area, but Minecraft is still annoying.
    • i'm trying to modify the attack damage in minecraft modded weapons i can only modify the attack damage in non-modded weapons it's in 1.8.9
    • As the title says, I'm trying to install Forge on Linux. Whenever I load up the installer, and let it run, I end up getting an error that says: "Processor failed, invalid outputs:" Then, it shows the .jar file I used for the installer, and some codes that don't make any sense to my pea-sized brain. All I can tell however, is that they're different and they aren't supposed to be. (Mostly because it tells me.) I don't know how to fix this, and I've encountered this for every file I've tried so far.
  • Topics

×
×
  • Create New...

Important Information

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