Everything posted by Tschallacka
-
Fences dont register when testing with world.isRemote
I have made an item as a worldstripper to harvest structures with and now I've hit upon a peculiar problem. When I hit a fence any code in world.isRemote does not get evaluated. Is there any reason why world.isRemote does not evaluate when hitting a fence with an item? All other blocks get captured properly when being hit, but the fences just dont evaluate in world.isRemote. if I remove the world.isRemote it works fine, but I don't want that because I want it to be able to execute clientside only. public boolean onItemUse(ItemStack itemstack, EntityPlayer player, World world, int x, int y, int z, int targetSide, float targetX, float targetY, float targetZ) { final int metadata = itemstack.getItemDamage(); if(metadata == 0) { if(world.isRemote) { Block block = world.getBlock(x, y, z); String name = block.blockRegistry.getNameForObject(block); int[] store = {world.getBlockMetadata(x, y, z),x,y,z}; MagicCookie.log.warn("Aquired block with worldstripper : "+name + "("+store[0]+")"); ItemWorldStripper.blocks.put(x+"/"+y+"/"+z+"="+name, store); } world.setBlockToAir(x, y, z); } }
-
[1.7.10]No access to TileEntity in onBlockPlaced[Fixed]
Eventually I fixed it by the BlockItem route. For those wanting to do the same: public class ItemBlockVoidManipulator extends ItemBlock { public ItemBlockVoidManipulator(Block block) { super(block); setHasSubtypes(true); // TODO Auto-generated constructor stub } @Override public String getUnlocalizedName(ItemStack itemstack) { return getUnlocalizedName() + "." + itemstack.getItemDamage(); } @Override public int getMetadata (int damageValue) { return damageValue; } public boolean placeBlockAt(final ItemStack stack, final EntityPlayer player, final World world, final int x, final int y, final int z, final int side, final float hitX, final float hitY, final float hitZ, final int metadata) { final boolean ret = super.placeBlockAt(stack, player, world, x, y, z, side, hitX, hitY, hitZ, metadata); if (metadata == 0) { final TileVoidCrystalStorage crystalstorage = (TileVoidCrystalStorage)world.getTileEntity(x, y, z); if (crystalstorage != null/* && crystalstorage instanceof TileVoidCrystalStorage*/) { crystalstorage.orientation = (short)side; world.markBlockForUpdate(x, y, x); } } return ret; } }
-
[1.7.10]No access to TileEntity in onBlockPlaced[Fixed]
I want to store the side my block is placed on by the player in a TileEntity, but it seems the TileEntity isnt generated yet the moment onBlockPlaced is called. Is there a way to save my orientation to my TileEntity? My code @Override public int onBlockPlaced(final World world, final int x, final int y, final int z, final int side, final float hitX, final float hitY, final float hitZ, final int metadata) { if (metadata == 0) { // This checkpoint gets passed MagicCookie.log.warn("We have side: "+side); final TileVoidCrystalStorage crystalstorage = (TileVoidCrystalStorage)world.getTileEntity(x, y, z); // This checkpoint fails horribly the code in this IF doesnt get executed. if (crystalstorage != null) { MagicCookie.log.warn("Do we have a orientation" + side); crystalstorage.orientation = (short)side; MagicCookie.log.warn("Do we have a orientation" + crystalstorage.orientation); world.markBlockForUpdate(x, y, x); } } return super.onBlockPlaced(world, x, y, z, side, hitX, hitY, hitZ, metadata); }
-
Several questions about custom renderer
I have a few questions and I hope someone will know the answers to this one ;-) Do custom renderers get included in the display list of a chunk? I know MC uses a display list per chunk to render stuff and that this display list only gets updated upon a modified/placed block. Now im looking to optimise my custom block so it wont eat up too much fps by pushing so many instructions and such. Thats why I'm wondering if custom tileentity renderes get included into the display list. I'm extending TileEntitySpecialRenderer and of course registered the renderer ;-) StuffLoader.voidBlockRI = RenderingRegistry.getNextAvailableRenderId(); this.registerBlockRenderer((ISimpleBlockRenderingHandler)new BlockVoidRenderer()); this.registerTileEntitySpecialRenderer(TileBlockVoid.class, new TileVoidBlockRenderer(0)); If they are not included, is there an option to have them included? if so, how do I do that? Making sure the textures get rendered properly When I move my camera fast on a pretty low fps machine it is as if the custom renderer cant keep up with the fast moving pace and renders the block a few pixels from where it should be. normal vanilla blocks dont have this issue. I am assuming its because the custom renderer isnt included in the display list. is there a way to fix it except "get a better pc"? Would using the tesselator being better? At the moment i'm kinda rendering my custom block along the lines the following tutorial, it's almost the same really except the shape is differnt. http://www.minecraftforge.net/wiki/Rendering_a_Techne_Model_as_a_Block Would using the tesselator provide better experience for fps/fast rendering updates? One renderer or multiple? The blocks i'm rendering are pretty static but can change state depending a user interaction. Would it be better to have different renderers based on state or is just using a singe renderer with a switch statement good enough? What would be "best practice"
-
[1.7.10] A way to "cache" the custom render instructions?
That is what I first tried, but the limitations of that dont allow me to render exactly what I want to render and how I want to render it. I will have to use TESR for what I want, because the object is in "fluid" movement at the moment of change, but when the morphing process is over it just remains stable and doesnt need updates. I'm just trying to keep low end pc's in mind heh. Is there somewhere in forge a display list I can tap into to insert my information? I cant use a display list in my code becase then the block doesnt render in the hotbar.
-
[1.7.10] A way to "cache" the custom render instructions?
I'm using a custom renderer for a block that is mouldable into different shapes(pillars, stairs, small blocks, etc...) and I was wondering if there is a setting that after the information has been updated to "cache" or make minecraft remember how the block looked with the result of the render so I dont have to do all the checks on each pass which block model to render. The reason I ask this is that on my potato pc the normal world seems to render smoothly, but as soon as my custom block comes into view it kinda turns a bit choppy if I move the camera a lot.(10fps pc yay) and I can see the world behind it rendering first and then the block I made. I do not have those issue with standard blocks. Any help or tips are greatly appriciated.
-
[solved] onRenderWorldLast not called often enough for custom particle renderer
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.
-
[solved] onRenderWorldLast not called often enough for custom particle renderer
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
-
cauldron is gone, but I was wondering if someone can help me
When i goofled for them i got all removed and blocked warnings from the webserver. Do they have a new url? Could you give it to me?
-
cauldron is gone, but I was wondering if someone can help me
Well, cauldron is gone unfortunately, which is a shame since my server can only run with the spigot combo, since all I can afford is a potato computer but mods wont stick to 1207 which was the latest cauldron version. So now I was wondering if someone could possibly give me the source of the latest cauldron or provide me with a location where I cauld procure it so I can edit it in the safety of my own home to the latest forge version required by my mods. All I can find are compiled jar files... hopefully someone can help me. Please send me a PM if you have a source of cauldron and are willing to share it with me.
-
(Solved) Must run server. Eula.text wont generate. How to agree to eula??
for other people with this problem, please post how you fixed it ;-) nothing more annoying to have this in google results without a solution
-
Save Mod from Java Decompiler
use stupid class names when done like aa, ab, ac, ad and function names like _1323(), stuff like that. There are some obfuscation programs, but really, any decent coder will be able to read your code like easy even when obfuscated.
-
How do I add thaumcraft jar to my mod test client in eclipse
yea, thaumcraft is somewhat obfuscated, but its actually very readable when decompiled. oh well, no standard feature to add it, its just baubles that gives me trouble heh, will have to fix that then.
-
How do I add thaumcraft jar to my mod test client in eclipse
Hiya, I am making a fun mod for myself and some friends on my server that makes magic cookies. For that I wish to expand the use of thaumcraft mana beans, but I cant for the life of me find out how to add existing mod jars o my eclipse test minecraft client I added the thaumcraft api, but how do I go about adding the thaumcraft and baubles to the eclipse project so I can actually use the run button to test the combo of my mod + thaumcraft?
-
cpw.mods.fml.common.registry.GameData.buildItemDataList() does not exist
Gist for error log https://gist.github.com/tschallacka/0eefb7d5b858c202b0b8 I run only thaumcraft and when I wish to look in my thaumonicon at an entry it crashes every time. It didnt do that in version 10.13.0.1208. it seems a method has been relocated in forge or forgotten alltogether without a fallback. java.lang.NoSuchMethodError: cpw.mods.fml.common.registry.GameData.buildItemDataList()Ljava/util/Map; I'm going to downgrade back to to version 1208 for now.
IPS spam blocked by CleanTalk.