Jump to content

Recommended Posts

Posted

Hello! I have an entity which spawns via a spawn egg. I have tis code in a class called ModEntites.java, which is called in the init().

	EntityRegistry.registerModEntity(EntityFireDragon.class, "firedragon", 1, IceAndFire.instance, 80, 3, false, 0X340000, 0XA52929);

 

However, after spawning around 10 of my mobs normally, I spawn another. This one freezes minecraft completely, and the log prints out:

 

 

at com.github.alexthe666.iceandfire.entity.EntityDragonBase.onLivingUpdate(EntityDragonBase.java:339) [EntityDragonBase.class:?]
at net.minecraft.entity.EntityLivingBase.onUpdate(EntityLivingBase.java:2160) [EntityLivingBase.class:?]
at net.minecraft.entity.EntityLiving.onUpdate(EntityLiving.java:343) [EntityLiving.class:?]
at com.github.alexthe666.iceandfire.entity.EntityDragonBase.onUpdate(EntityDragonBase.java:594) [EntityDragonBase.class:?]
at net.minecraft.world.World.updateEntityWithOptionalForce(World.java:2086) [World.class:?]
at net.minecraft.world.WorldServer.updateEntityWithOptionalForce(WorldServer.java:864) [WorldServer.class:?]
at net.minecraft.world.World.updateEntity(World.java:2051) [World.class:?]
at net.minecraft.world.World.updateEntities(World.java:1882) [World.class:?]
at net.minecraft.world.WorldServer.updateEntities(WorldServer.java:637) [WorldServer.class:?]
at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:779) [MinecraftServer.class:?]
at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:683) [MinecraftServer.class:?]
at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:155) [integratedServer.class:?]
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:532) [MinecraftServer.class:?]
at java.lang.Thread.run(Unknown Source) [?:1.8.0_71]
Apr 01, 2016 2:12:18 PM io.netty.channel.embedded.EmbeddedChannel recordException
WARNING: More than one exception was raised. Will report only the first one and log others.
java.lang.NullPointerException
at net.minecraftforge.fml.common.network.FMLOutboundHandler$OutboundTarget$5.selectNetworks(FMLOutboundHandler.java:131)
at net.minecraftforge.fml.common.network.FMLOutboundHandler.write(FMLOutboundHandler.java:273)
at io.netty.channel.AbstractChannelHandlerContext.invokeWrite(AbstractChannelHandlerContext.java:658)
at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:716)
at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:651)
at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:112)
at io.netty.handler.codec.MessageToMessageCodec.write(MessageToMessageCodec.java:116)
at io.netty.channel.AbstractChannelHandlerContext.invokeWrite(AbstractChannelHandlerContext.java:658)
at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:716)
at io.netty.channel.AbstractChannelHandlerContext.writeAndFlush(AbstractChannelHandlerContext.java:706)
at io.netty.channel.AbstractChannelHandlerContext.writeAndFlush(AbstractChannelHandlerContext.java:741)
at io.netty.channel.DefaultChannelPipeline.writeAndFlush(DefaultChannelPipeline.java:895)
at io.netty.channel.AbstractChannel.writeAndFlush(AbstractChannel.java:240)
at net.minecraftforge.fml.common.network.simpleimpl.SimpleNetworkWrapper.sendToAll(SimpleNetworkWrapper.java:215)
at com.github.alexthe666.iceandfire.entity.EntityDragonBase.onLivingUpdate(EntityDragonBase.java:339)
at net.minecraft.entity.EntityLivingBase.onUpdate(EntityLivingBase.java:2160)
at net.minecraft.entity.EntityLiving.onUpdate(EntityLiving.java:343)
at com.github.alexthe666.iceandfire.entity.EntityDragonBase.onUpdate(EntityDragonBase.java:594)
at net.minecraft.world.World.updateEntityWithOptionalForce(World.java:2086)
at net.minecraft.world.WorldServer.updateEntityWithOptionalForce(WorldServer.java:864)
at net.minecraft.world.World.updateEntity(World.java:2051)
at net.minecraft.world.World.updateEntities(World.java:1882)
at net.minecraft.world.WorldServer.updateEntities(WorldServer.java:637)
at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:779)
at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:683)
at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:155)
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:532)
at java.lang.Thread.run(Unknown Source)

[14:12:18] [server thread/ERROR] [FML]: FMLIndexedMessageCodec exception caught
java.lang.NullPointerException
at net.minecraftforge.fml.common.network.FMLOutboundHandler$OutboundTarget$5.selectNetworks(FMLOutboundHandler.java:131) ~[FMLOutboundHandler$OutboundTarget$5.class:?]
at net.minecraftforge.fml.common.network.FMLOutboundHandler.write(FMLOutboundHandler.java:273) ~[FMLOutboundHandler.class:?]
at io.netty.channel.AbstractChannelHandlerContext.invokeWrite(AbstractChannelHandlerContext.java:658) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:716) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:651) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:112) ~[MessageToMessageEncoder.class:4.0.23.Final]
at io.netty.handler.codec.MessageToMessageCodec.write(MessageToMessageCodec.java:116) ~[MessageToMessageCodec.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.invokeWrite(AbstractChannelHandlerContext.java:658) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:716) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.writeAndFlush(AbstractChannelHandlerContext.java:706) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.writeAndFlush(AbstractChannelHandlerContext.java:741) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.DefaultChannelPipeline.writeAndFlush(DefaultChannelPipeline.java:895) ~[DefaultChannelPipeline.class:4.0.23.Final]
at io.netty.channel.AbstractChannel.writeAndFlush(AbstractChannel.java:240) ~[AbstractChannel.class:4.0.23.Final]
at net.minecraftforge.fml.common.network.simpleimpl.SimpleNetworkWrapper.sendToAll(SimpleNetworkWrapper.java:215) [simpleNetworkWrapper.class:?]
at com.github.alexthe666.iceandfire.entity.EntityDragonBase.onLivingUpdate(EntityDragonBase.java:339) [EntityDragonBase.class:?]
at net.minecraft.entity.EntityLivingBase.onUpdate(EntityLivingBase.java:2160) [EntityLivingBase.class:?]
at net.minecraft.entity.EntityLiving.onUpdate(EntityLiving.java:343) [EntityLiving.class:?]
at com.github.alexthe666.iceandfire.entity.EntityDragonBase.onUpdate(EntityDragonBase.java:594) [EntityDragonBase.class:?]
at net.minecraft.world.World.updateEntityWithOptionalForce(World.java:2086) [World.class:?]
at net.minecraft.world.WorldServer.updateEntityWithOptionalForce(WorldServer.java:864) [WorldServer.class:?]
at net.minecraft.world.World.updateEntity(World.java:2051) [World.class:?]
at net.minecraft.world.World.updateEntities(World.java:1882) [World.class:?]
at net.minecraft.world.WorldServer.updateEntities(WorldServer.java:637) [WorldServer.class:?]
at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:779) [MinecraftServer.class:?]
at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:683) [MinecraftServer.class:?]
at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:155) [integratedServer.class:?]
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:532) [MinecraftServer.class:?]
at java.lang.Thread.run(Unknown Source) [?:1.8.0_71]
[14:12:18] [server thread/ERROR] [FML]: SimpleChannelHandlerWrapper exception
java.lang.NullPointerException
at net.minecraftforge.fml.common.network.FMLOutboundHandler$OutboundTarget$5.selectNetworks(FMLOutboundHandler.java:131) ~[FMLOutboundHandler$OutboundTarget$5.class:?]
at net.minecraftforge.fml.common.network.FMLOutboundHandler.write(FMLOutboundHandler.java:273) ~[FMLOutboundHandler.class:?]
at io.netty.channel.AbstractChannelHandlerContext.invokeWrite(AbstractChannelHandlerContext.java:658) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:716) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:651) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:112) ~[MessageToMessageEncoder.class:4.0.23.Final]
at io.netty.handler.codec.MessageToMessageCodec.write(MessageToMessageCodec.java:116) ~[MessageToMessageCodec.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.invokeWrite(AbstractChannelHandlerContext.java:658) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:716) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.writeAndFlush(AbstractChannelHandlerContext.java:706) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.writeAndFlush(AbstractChannelHandlerContext.java:741) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.DefaultChannelPipeline.writeAndFlush(DefaultChannelPipeline.java:895) ~[DefaultChannelPipeline.class:4.0.23.Final]
at io.netty.channel.AbstractChannel.writeAndFlush(AbstractChannel.java:240) ~[AbstractChannel.class:4.0.23.Final]
at net.minecraftforge.fml.common.network.simpleimpl.SimpleNetworkWrapper.sendToAll(SimpleNetworkWrapper.java:215) [simpleNetworkWrapper.class:?]
at com.github.alexthe666.iceandfire.entity.EntityDragonBase.onLivingUpdate(EntityDragonBase.java:339) [EntityDragonBase.class:?]
at net.minecraft.entity.EntityLivingBase.onUpdate(EntityLivingBase.java:2160) [EntityLivingBase.class:?]
at net.minecraft.entity.EntityLiving.onUpdate(EntityLiving.java:343) [EntityLiving.class:?]
at com.github.alexthe666.iceandfire.entity.EntityDragonBase.onUpdate(EntityDragonBase.java:594) [EntityDragonBase.class:?]
at net.minecraft.world.World.updateEntityWithOptionalForce(World.java:2086) [World.class:?]
at net.minecraft.world.WorldServer.updateEntityWithOptionalForce(WorldServer.java:864) [WorldServer.class:?]
at net.minecraft.world.World.updateEntity(World.java:2051) [World.class:?]
at net.minecraft.world.World.updateEntities(World.java:1882) [World.class:?]
at net.minecraft.world.WorldServer.updateEntities(WorldServer.java:637) [WorldServer.class:?]
at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:779) [MinecraftServer.class:?]
at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:683) [MinecraftServer.class:?]
at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:155) [integratedServer.class:?]
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:532) [MinecraftServer.class:?]
at java.lang.Thread.run(Unknown Source) [?:1.8.0_71]
Apr 01, 2016 2:12:18 PM io.netty.channel.embedded.EmbeddedChannel recordException
WARNING: More than one exception was raised. Will report only the first one and log others.
java.lang.NullPointerException
at net.minecraftforge.fml.common.network.FMLOutboundHandler$OutboundTarget$5.selectNetworks(FMLOutboundHandler.java:131)
at net.minecraftforge.fml.common.network.FMLOutboundHandler.write(FMLOutboundHandler.java:273)
at io.netty.channel.AbstractChannelHandlerContext.invokeWrite(AbstractChannelHandlerContext.java:658)
at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:716)
at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:651)
at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:112)
at io.netty.handler.codec.MessageToMessageCodec.write(MessageToMessageCodec.java:116)
at io.netty.channel.AbstractChannelHandlerContext.invokeWrite(AbstractChannelHandlerContext.java:658)
at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:716)
at io.netty.channel.AbstractChannelHandlerContext.writeAndFlush(AbstractChannelHandlerContext.java:706)
at io.netty.channel.AbstractChannelHandlerContext.writeAndFlush(AbstractChannelHandlerContext.java:741)
at io.netty.channel.DefaultChannelPipeline.writeAndFlush(DefaultChannelPipeline.java:895)
at io.netty.channel.AbstractChannel.writeAndFlush(AbstractChannel.java:240)
at net.minecraftforge.fml.common.network.simpleimpl.SimpleNetworkWrapper.sendToAll(SimpleNetworkWrapper.java:215)
at com.github.alexthe666.iceandfire.entity.EntityDragonBase.onLivingUpdate(EntityDragonBase.java:339)
at net.minecraft.entity.EntityLivingBase.onUpdate(EntityLivingBase.java:2160)
at net.minecraft.entity.EntityLiving.onUpdate(EntityLiving.java:343)
at com.github.alexthe666.iceandfire.entity.EntityDragonBase.onUpdate(EntityDragonBase.java:594)
at net.minecraft.world.World.updateEntityWithOptionalForce(World.java:2086)
at net.minecraft.world.WorldServer.updateEntityWithOptionalForce(WorldServer.java:864)
at net.minecraft.world.World.updateEntity(World.java:2051)
at net.minecraft.world.World.updateEntities(World.java:1882)
at net.minecraft.world.WorldServer.updateEntities(WorldServer.java:637)
at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:779)
at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:683)
at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:155)
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:532)
at java.lang.Thread.run(Unknown Source)

[14:12:18] [server thread/ERROR] [FML]: FMLIndexedMessageCodec exception caught
java.lang.NullPointerException
at net.minecraftforge.fml.common.network.FMLOutboundHandler$OutboundTarget$5.selectNetworks(FMLOutboundHandler.java:131) ~[FMLOutboundHandler$OutboundTarget$5.class:?]
at net.minecraftforge.fml.common.network.FMLOutboundHandler.write(FMLOutboundHandler.java:273) ~[FMLOutboundHandler.class:?]
at io.netty.channel.AbstractChannelHandlerContext.invokeWrite(AbstractChannelHandlerContext.java:658) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:716) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:651) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:112) ~[MessageToMessageEncoder.class:4.0.23.Final]
at io.netty.handler.codec.MessageToMessageCodec.write(MessageToMessageCodec.java:116) ~[MessageToMessageCodec.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.invokeWrite(AbstractChannelHandlerContext.java:658) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:716) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.writeAndFlush(AbstractChannelHandlerContext.java:706) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.writeAndFlush(AbstractChannelHandlerContext.java:741) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.DefaultChannelPipeline.writeAndFlush(DefaultChannelPipeline.java:895) ~[DefaultChannelPipeline.class:4.0.23.Final]
at io.netty.channel.AbstractChannel.writeAndFlush(AbstractChannel.java:240) ~[AbstractChannel.class:4.0.23.Final]
at net.minecraftforge.fml.common.network.simpleimpl.SimpleNetworkWrapper.sendToAll(SimpleNetworkWrapper.java:215) [simpleNetworkWrapper.class:?]
at com.github.alexthe666.iceandfire.entity.EntityDragonBase.onLivingUpdate(EntityDragonBase.java:339) [EntityDragonBase.class:?]
at net.minecraft.entity.EntityLivingBase.onUpdate(EntityLivingBase.java:2160) [EntityLivingBase.class:?]
at net.minecraft.entity.EntityLiving.onUpdate(EntityLiving.java:343) [EntityLiving.class:?]
at com.github.alexthe666.iceandfire.entity.EntityDragonBase.onUpdate(EntityDragonBase.java:594) [EntityDragonBase.class:?]
at net.minecraft.world.World.updateEntityWithOptionalForce(World.java:2086) [World.class:?]
at net.minecraft.world.WorldServer.updateEntityWithOptionalForce(WorldServer.java:864) [WorldServer.class:?]
at net.minecraft.world.World.updateEntity(World.java:2051) [World.class:?]
at net.minecraft.world.World.updateEntities(World.java:1882) [World.class:?]
at net.minecraft.world.WorldServer.updateEntities(WorldServer.java:637) [WorldServer.class:?]
at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:779) [MinecraftServer.class:?]
at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:683) [MinecraftServer.class:?]
at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:155) [integratedServer.class:?]
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:532) [MinecraftServer.class:?]
at java.lang.Thread.run(Unknown Source) [?:1.8.0_71]
[14:12:18] [server thread/ERROR] [FML]: SimpleChannelHandlerWrapper exception
java.lang.NullPointerException
at net.minecraftforge.fml.common.network.FMLOutboundHandler$OutboundTarget$5.selectNetworks(FMLOutboundHandler.java:131) ~[FMLOutboundHandler$OutboundTarget$5.class:?]
at net.minecraftforge.fml.common.network.FMLOutboundHandler.write(FMLOutboundHandler.java:273) ~[FMLOutboundHandler.class:?]
at io.netty.channel.AbstractChannelHandlerContext.invokeWrite(AbstractChannelHandlerContext.java:658) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:716) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:651) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:112) ~[MessageToMessageEncoder.class:4.0.23.Final]
at io.netty.handler.codec.MessageToMessageCodec.write(MessageToMessageCodec.java:116) ~[MessageToMessageCodec.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.invokeWrite(AbstractChannelHandlerContext.java:658) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:716) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.writeAndFlush(AbstractChannelHandlerContext.java:706) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.writeAndFlush(AbstractChannelHandlerContext.java:741) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.DefaultChannelPipeline.writeAndFlush(DefaultChannelPipeline.java:895) ~[DefaultChannelPipeline.class:4.0.23.Final]
at io.netty.channel.AbstractChannel.writeAndFlush(AbstractChannel.java:240) ~[AbstractChannel.class:4.0.23.Final]
at net.minecraftforge.fml.common.network.simpleimpl.SimpleNetworkWrapper.sendToAll(SimpleNetworkWrapper.java:215) [simpleNetworkWrapper.class:?]
at com.github.alexthe666.iceandfire.entity.EntityDragonBase.onLivingUpdate(EntityDragonBase.java:339) [EntityDragonBase.class:?]
at net.minecraft.entity.EntityLivingBase.onUpdate(EntityLivingBase.java:2160) [EntityLivingBase.class:?]
at net.minecraft.entity.EntityLiving.onUpdate(EntityLiving.java:343) [EntityLiving.class:?]
at com.github.alexthe666.iceandfire.entity.EntityDragonBase.onUpdate(EntityDragonBase.java:594) [EntityDragonBase.class:?]
at net.minecraft.world.World.updateEntityWithOptionalForce(World.java:2086) [World.class:?]
at net.minecraft.world.WorldServer.updateEntityWithOptionalForce(WorldServer.java:864) [WorldServer.class:?]
at net.minecraft.world.World.updateEntity(World.java:2051) [World.class:?]
at net.minecraft.world.World.updateEntities(World.java:1882) [World.class:?]
at net.minecraft.world.WorldServer.updateEntities(WorldServer.java:637) [WorldServer.class:?]
at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:779) [MinecraftServer.class:?]
at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:683) [MinecraftServer.class:?]
at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:155) [integratedServer.class:?]
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:532) [MinecraftServer.class:?]
at java.lang.Thread.run(Unknown Source) [?:1.8.0_71]
Apr 01, 2016 2:12:18 PM io.netty.channel.embedded.EmbeddedChannel recordException
WARNING: More than one exception was raised. Will report only the first one and log others.
java.lang.NullPointerException
at net.minecraftforge.fml.common.network.FMLOutboundHandler$OutboundTarget$5.selectNetworks(FMLOutboundHandler.java:131)
at net.minecraftforge.fml.common.network.FMLOutboundHandler.write(FMLOutboundHandler.java:273)
at io.netty.channel.AbstractChannelHandlerContext.invokeWrite(AbstractChannelHandlerContext.java:658)
at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:716)
at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:651)
at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:112)
at io.netty.handler.codec.MessageToMessageCodec.write(MessageToMessageCodec.java:116)
at io.netty.channel.AbstractChannelHandlerContext.invokeWrite(AbstractChannelHandlerContext.java:658)
at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:716)
at io.netty.channel.AbstractChannelHandlerContext.writeAndFlush(AbstractChannelHandlerContext.java:706)
at io.netty.channel.AbstractChannelHandlerContext.writeAndFlush(AbstractChannelHandlerContext.java:741)
at io.netty.channel.DefaultChannelPipeline.writeAndFlush(DefaultChannelPipeline.java:895)
at io.netty.channel.AbstractChannel.writeAndFlush(AbstractChannel.java:240)
at net.minecraftforge.fml.common.network.simpleimpl.SimpleNetworkWrapper.sendToAll(SimpleNetworkWrapper.java:215)
at com.github.alexthe666.iceandfire.entity.EntityDragonBase.onLivingUpdate(EntityDragonBase.java:339)
at net.minecraft.entity.EntityLivingBase.onUpdate(EntityLivingBase.java:2160)
at net.minecraft.entity.EntityLiving.onUpdate(EntityLiving.java:343)
at com.github.alexthe666.iceandfire.entity.EntityDragonBase.onUpdate(EntityDragonBase.java:594)
at net.minecraft.world.World.updateEntityWithOptionalForce(World.java:2086)
at net.minecraft.world.WorldServer.updateEntityWithOptionalForce(WorldServer.java:864)
at net.minecraft.world.World.updateEntity(World.java:2051)
at net.minecraft.world.World.updateEntities(World.java:1882)
at net.minecraft.world.WorldServer.updateEntities(WorldServer.java:637)
at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:779)
at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:683)
at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:155)
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:532)
at java.lang.Thread.run(Unknown Source)

[14:12:20] [server thread/ERROR] [FML]: FMLIndexedMessageCodec exception caught
java.lang.NullPointerException
at net.minecraftforge.fml.common.network.FMLOutboundHandler$OutboundTarget$5.selectNetworks(FMLOutboundHandler.java:131) ~[FMLOutboundHandler$OutboundTarget$5.class:?]
at net.minecraftforge.fml.common.network.FMLOutboundHandler.write(FMLOutboundHandler.java:273) ~[FMLOutboundHandler.class:?]
at io.netty.channel.AbstractChannelHandlerContext.invokeWrite(AbstractChannelHandlerContext.java:658) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:716) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:651) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:112) ~[MessageToMessageEncoder.class:4.0.23.Final]
at io.netty.handler.codec.MessageToMessageCodec.write(MessageToMessageCodec.java:116) ~[MessageToMessageCodec.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.invokeWrite(AbstractChannelHandlerContext.java:658) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:716) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.writeAndFlush(AbstractChannelHandlerContext.java:706) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.writeAndFlush(AbstractChannelHandlerContext.java:741) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.DefaultChannelPipeline.writeAndFlush(DefaultChannelPipeline.java:895) ~[DefaultChannelPipeline.class:4.0.23.Final]
at io.netty.channel.AbstractChannel.writeAndFlush(AbstractChannel.java:240) ~[AbstractChannel.class:4.0.23.Final]
at net.minecraftforge.fml.common.network.simpleimpl.SimpleNetworkWrapper.sendToAll(SimpleNetworkWrapper.java:215) [simpleNetworkWrapper.class:?]
at com.github.alexthe666.iceandfire.entity.EntityDragonBase.onLivingUpdate(EntityDragonBase.java:339) [EntityDragonBase.class:?]
at net.minecraft.entity.EntityLivingBase.onUpdate(EntityLivingBase.java:2160) [EntityLivingBase.class:?]
at net.minecraft.entity.EntityLiving.onUpdate(EntityLiving.java:343) [EntityLiving.class:?]
at com.github.alexthe666.iceandfire.entity.EntityDragonBase.onUpdate(EntityDragonBase.java:594) [EntityDragonBase.class:?]
at net.minecraft.world.World.updateEntityWithOptionalForce(World.java:2086) [World.class:?]
at net.minecraft.world.WorldServer.updateEntityWithOptionalForce(WorldServer.java:864) [WorldServer.class:?]
at net.minecraft.world.World.updateEntity(World.java:2051) [World.class:?]
at net.minecraft.world.World.updateEntities(World.java:1882) [World.class:?]
at net.minecraft.world.WorldServer.updateEntities(WorldServer.java:637) [WorldServer.class:?]
at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:779) [MinecraftServer.class:?]
at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:683) [MinecraftServer.class:?]
at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:155) [integratedServer.class:?]
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:532) [MinecraftServer.class:?]
at java.lang.Thread.run(Unknown Source) [?:1.8.0_71]
[14:12:20] [server thread/ERROR] [FML]: SimpleChannelHandlerWrapper exception
java.lang.NullPointerException
at net.minecraftforge.fml.common.network.FMLOutboundHandler$OutboundTarget$5.selectNetworks(FMLOutboundHandler.java:131) ~[FMLOutboundHandler$OutboundTarget$5.class:?]
at net.minecraftforge.fml.common.network.FMLOutboundHandler.write(FMLOutboundHandler.java:273) ~[FMLOutboundHandler.class:?]
at io.netty.channel.AbstractChannelHandlerContext.invokeWrite(AbstractChannelHandlerContext.java:658) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:716) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:651) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:112) ~[MessageToMessageEncoder.class:4.0.23.Final]
at io.netty.handler.codec.MessageToMessageCodec.write(MessageToMessageCodec.java:116) ~[MessageToMessageCodec.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.invokeWrite(AbstractChannelHandlerContext.java:658) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:716) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.writeAndFlush(AbstractChannelHandlerContext.java:706) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.writeAndFlush(AbstractChannelHandlerContext.java:741) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.DefaultChannelPipeline.writeAndFlush(DefaultChannelPipeline.java:895) ~[DefaultChannelPipeline.class:4.0.23.Final]
at io.netty.channel.AbstractChannel.writeAndFlush(AbstractChannel.java:240) ~[AbstractChannel.class:4.0.23.Final]
at net.minecraftforge.fml.common.network.simpleimpl.SimpleNetworkWrapper.sendToAll(SimpleNetworkWrapper.java:215) [simpleNetworkWrapper.class:?]
at com.github.alexthe666.iceandfire.entity.EntityDragonBase.onLivingUpdate(EntityDragonBase.java:339) [EntityDragonBase.class:?]
at net.minecraft.entity.EntityLivingBase.onUpdate(EntityLivingBase.java:2160) [EntityLivingBase.class:?]
at net.minecraft.entity.EntityLiving.onUpdate(EntityLiving.java:343) [EntityLiving.class:?]
at com.github.alexthe666.iceandfire.entity.EntityDragonBase.onUpdate(EntityDragonBase.java:594) [EntityDragonBase.class:?]
at net.minecraft.world.World.updateEntityWithOptionalForce(World.java:2086) [World.class:?]
at net.minecraft.world.WorldServer.updateEntityWithOptionalForce(WorldServer.java:864) [WorldServer.class:?]
at net.minecraft.world.World.updateEntity(World.java:2051) [World.class:?]
at net.minecraft.world.World.updateEntities(World.java:1882) [World.class:?]
at net.minecraft.world.WorldServer.updateEntities(WorldServer.java:637) [WorldServer.class:?]
at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:779) [MinecraftServer.class:?]
at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:683) [MinecraftServer.class:?]
at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:155) [integratedServer.class:?]
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:532) [MinecraftServer.class:?]
at java.lang.Thread.run(Unknown Source) [?:1.8.0_71]
Apr 01, 2016 2:12:20 PM io.netty.channel.embedded.EmbeddedChannel recordException
WARNING: More than one exception was raised. Will report only the first one and log others.
java.lang.NullPointerException
at net.minecraftforge.fml.common.network.FMLOutboundHandler$OutboundTarget$5.selectNetworks(FMLOutboundHandler.java:131)
at net.minecraftforge.fml.common.network.FMLOutboundHandler.write(FMLOutboundHandler.java:273)
at io.netty.channel.AbstractChannelHandlerContext.invokeWrite(AbstractChannelHandlerContext.java:658)
at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:716)
at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:651)
at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:112)
at io.netty.handler.codec.MessageToMessageCodec.write(MessageToMessageCodec.java:116)
at io.netty.channel.AbstractChannelHandlerContext.invokeWrite(AbstractChannelHandlerContext.java:658)
at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:716)
at io.netty.channel.AbstractChannelHandlerContext.writeAndFlush(AbstractChannelHandlerContext.java:706)
at io.netty.channel.AbstractChannelHandlerContext.writeAndFlush(AbstractChannelHandlerContext.java:741)
at io.netty.channel.DefaultChannelPipeline.writeAndFlush(DefaultChannelPipeline.java:895)
at io.netty.channel.AbstractChannel.writeAndFlush(AbstractChannel.java:240)
at net.minecraftforge.fml.common.network.simpleimpl.SimpleNetworkWrapper.sendToAll(SimpleNetworkWrapper.java:215)
at com.github.alexthe666.iceandfire.entity.EntityDragonBase.onLivingUpdate(EntityDragonBase.java:339)
at net.minecraft.entity.EntityLivingBase.onUpdate(EntityLivingBase.java:2160)
at net.minecraft.entity.EntityLiving.onUpdate(EntityLiving.java:343)
at com.github.alexthe666.iceandfire.entity.EntityDragonBase.onUpdate(EntityDragonBase.java:594)
at net.minecraft.world.World.updateEntityWithOptionalForce(World.java:2086)
at net.minecraft.world.WorldServer.updateEntityWithOptionalForce(WorldServer.java:864)
at net.minecraft.world.World.updateEntity(World.java:2051)
at net.minecraft.world.World.updateEntities(World.java:1882)
at net.minecraft.world.WorldServer.updateEntities(WorldServer.java:637)
at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:779)
at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:683)
at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:155)
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:532)
at java.lang.Thread.run(Unknown Source)

[14:12:20] [server thread/ERROR] [FML]: FMLIndexedMessageCodec exception caught
java.lang.NullPointerException
at net.minecraftforge.fml.common.network.FMLOutboundHandler$OutboundTarget$5.selectNetworks(FMLOutboundHandler.java:131) ~[FMLOutboundHandler$OutboundTarget$5.class:?]
at net.minecraftforge.fml.common.network.FMLOutboundHandler.write(FMLOutboundHandler.java:273) ~[FMLOutboundHandler.class:?]
at io.netty.channel.AbstractChannelHandlerContext.invokeWrite(AbstractChannelHandlerContext.java:658) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:716) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:651) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:112) ~[MessageToMessageEncoder.class:4.0.23.Final]
at io.netty.handler.codec.MessageToMessageCodec.write(MessageToMessageCodec.java:116) ~[MessageToMessageCodec.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.invokeWrite(AbstractChannelHandlerContext.java:658) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:716) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.writeAndFlush(AbstractChannelHandlerContext.java:706) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.writeAndFlush(AbstractChannelHandlerContext.java:741) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.DefaultChannelPipeline.writeAndFlush(DefaultChannelPipeline.java:895) ~[DefaultChannelPipeline.class:4.0.23.Final]
at io.netty.channel.AbstractChannel.writeAndFlush(AbstractChannel.java:240) ~[AbstractChannel.class:4.0.23.Final]
at net.minecraftforge.fml.common.network.simpleimpl.SimpleNetworkWrapper.sendToAll(SimpleNetworkWrapper.java:215) [simpleNetworkWrapper.class:?]
at com.github.alexthe666.iceandfire.entity.EntityDragonBase.onLivingUpdate(EntityDragonBase.java:339) [EntityDragonBase.class:?]
at net.minecraft.entity.EntityLivingBase.onUpdate(EntityLivingBase.java:2160) [EntityLivingBase.class:?]
at net.minecraft.entity.EntityLiving.onUpdate(EntityLiving.java:343) [EntityLiving.class:?]
at com.github.alexthe666.iceandfire.entity.EntityDragonBase.onUpdate(EntityDragonBase.java:594) [EntityDragonBase.class:?]
at net.minecraft.world.World.updateEntityWithOptionalForce(World.java:2086) [World.class:?]
at net.minecraft.world.WorldServer.updateEntityWithOptionalForce(WorldServer.java:864) [WorldServer.class:?]
at net.minecraft.world.World.updateEntity(World.java:2051) [World.class:?]
at net.minecraft.world.World.updateEntities(World.java:1882) [World.class:?]
at net.minecraft.world.WorldServer.updateEntities(WorldServer.java:637) [WorldServer.class:?]
at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:779) [MinecraftServer.class:?]
at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:683) [MinecraftServer.class:?]
at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:155) [integratedServer.class:?]
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:532) [MinecraftServer.class:?]
at java.lang.Thread.run(Unknown Source) [?:1.8.0_71]
[14:12:20] [server thread/ERROR] [FML]: SimpleChannelHandlerWrapper exception
java.lang.NullPointerException
at net.minecraftforge.fml.common.network.FMLOutboundHandler$OutboundTarget$5.selectNetworks(FMLOutboundHandler.java:131) ~[FMLOutboundHandler$OutboundTarget$5.class:?]
at net.minecraftforge.fml.common.network.FMLOutboundHandler.write(FMLOutboundHandler.java:273) ~[FMLOutboundHandler.class:?]
at io.netty.channel.AbstractChannelHandlerContext.invokeWrite(AbstractChannelHandlerContext.java:658) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:716) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:651) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:112) ~[MessageToMessageEncoder.class:4.0.23.Final]
at io.netty.handler.codec.MessageToMessageCodec.write(MessageToMessageCodec.java:116) ~[MessageToMessageCodec.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.invokeWrite(AbstractChannelHandlerContext.java:658) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:716) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.writeAndFlush(AbstractChannelHandlerContext.java:706) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.writeAndFlush(AbstractChannelHandlerContext.java:741) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.DefaultChannelPipeline.writeAndFlush(DefaultChannelPipeline.java:895) ~[DefaultChannelPipeline.class:4.0.23.Final]
at io.netty.channel.AbstractChannel.writeAndFlush(AbstractChannel.java:240) ~[AbstractChannel.class:4.0.23.Final]
at net.minecraftforge.fml.common.network.simpleimpl.SimpleNetworkWrapper.sendToAll(SimpleNetworkWrapper.java:215) [simpleNetworkWrapper.class:?]
at com.github.alexthe666.iceandfire.entity.EntityDragonBase.onLivingUpdate(EntityDragonBase.java:339) [EntityDragonBase.class:?]
at net.minecraft.entity.EntityLivingBase.onUpdate(EntityLivingBase.java:2160) [EntityLivingBase.class:?]
at net.minecraft.entity.EntityLiving.onUpdate(EntityLiving.java:343) [EntityLiving.class:?]
at com.github.alexthe666.iceandfire.entity.EntityDragonBase.onUpdate(EntityDragonBase.java:594) [EntityDragonBase.class:?]
at net.minecraft.world.World.updateEntityWithOptionalForce(World.java:2086) [World.class:?]
at net.minecraft.world.WorldServer.updateEntityWithOptionalForce(WorldServer.java:864) [WorldServer.class:?]
at net.minecraft.world.World.updateEntity(World.java:2051) [World.class:?]
at net.minecraft.world.World.updateEntities(World.java:1882) [World.class:?]
at net.minecraft.world.WorldServer.updateEntities(WorldServer.java:637) [WorldServer.class:?]
at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:779) [MinecraftServer.class:?]
at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:683) [MinecraftServer.class:?]
at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:155) [integratedServer.class:?]
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:532) [MinecraftServer.class:?]
at java.lang.Thread.run(Unknown Source) [?:1.8.0_71]
Apr 01, 2016 2:12:20 PM io.netty.channel.embedded.EmbeddedChannel recordException
WARNING: More than one exception was raised. Will report only the first one and log others.
java.lang.NullPointerException
at net.minecraftforge.fml.common.network.FMLOutboundHandler$OutboundTarget$5.selectNetworks(FMLOutboundHandler.java:131)
at net.minecraftforge.fml.common.network.FMLOutboundHandler.write(FMLOutboundHandler.java:273)
at io.netty.channel.AbstractChannelHandlerContext.invokeWrite(AbstractChannelHandlerContext.java:658)
at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:716)
at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:651)
at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:112)
at io.netty.handler.codec.MessageToMessageCodec.write(MessageToMessageCodec.java:116)
at io.netty.channel.AbstractChannelHandlerContext.invokeWrite(AbstractChannelHandlerContext.java:658)
at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:716)
at io.netty.channel.AbstractChannelHandlerContext.writeAndFlush(AbstractChannelHandlerContext.java:706)
at io.netty.channel.AbstractChannelHandlerContext.writeAndFlush(AbstractChannelHandlerContext.java:741)
at io.netty.channel.DefaultChannelPipeline.writeAndFlush(DefaultChannelPipeline.java:895)
at io.netty.channel.AbstractChannel.writeAndFlush(AbstractChannel.java:240)
at net.minecraftforge.fml.common.network.simpleimpl.SimpleNetworkWrapper.sendToAll(SimpleNetworkWrapper.java:215)
at com.github.alexthe666.iceandfire.entity.EntityDragonBase.onLivingUpdate(EntityDragonBase.java:339)
at net.minecraft.entity.EntityLivingBase.onUpdate(EntityLivingBase.java:2160)
at net.minecraft.entity.EntityLiving.onUpdate(EntityLiving.java:343)
at com.github.alexthe666.iceandfire.entity.EntityDragonBase.onUpdate(EntityDragonBase.java:594)
at net.minecraft.world.World.updateEntityWithOptionalForce(World.java:2086)
at net.minecraft.world.WorldServer.updateEntityWithOptionalForce(WorldServer.java:864)
at net.minecraft.world.World.updateEntity(World.java:2051)
at net.minecraft.world.World.updateEntities(World.java:1882)
at net.minecraft.world.WorldServer.updateEntities(WorldServer.java:637)
at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:779)
at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:683)
at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:155)
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:532)
at java.lang.Thread.run(Unknown Source)

[14:12:20] [server thread/ERROR] [FML]: FMLIndexedMessageCodec exception caught
java.lang.NullPointerException
at net.minecraftforge.fml.common.network.FMLOutboundHandler$OutboundTarget$5.selectNetworks(FMLOutboundHandler.java:131) ~[FMLOutboundHandler$OutboundTarget$5.class:?]
at net.minecraftforge.fml.common.network.FMLOutboundHandler.write(FMLOutboundHandler.java:273) ~[FMLOutboundHandler.class:?]
at io.netty.channel.AbstractChannelHandlerContext.invokeWrite(AbstractChannelHandlerContext.java:658) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:716) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:651) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:112) ~[MessageToMessageEncoder.class:4.0.23.Final]
at io.netty.handler.codec.MessageToMessageCodec.write(MessageToMessageCodec.java:116) ~[MessageToMessageCodec.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.invokeWrite(AbstractChannelHandlerContext.java:658) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:716) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.writeAndFlush(AbstractChannelHandlerContext.java:706) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.writeAndFlush(AbstractChannelHandlerContext.java:741) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.DefaultChannelPipeline.writeAndFlush(DefaultChannelPipeline.java:895) ~[DefaultChannelPipeline.class:4.0.23.Final]
at io.netty.channel.AbstractChannel.writeAndFlush(AbstractChannel.java:240) ~[AbstractChannel.class:4.0.23.Final]
at net.minecraftforge.fml.common.network.simpleimpl.SimpleNetworkWrapper.sendToAll(SimpleNetworkWrapper.java:215) [simpleNetworkWrapper.class:?]
at com.github.alexthe666.iceandfire.entity.EntityDragonBase.onLivingUpdate(EntityDragonBase.java:339) [EntityDragonBase.class:?]
at net.minecraft.entity.EntityLivingBase.onUpdate(EntityLivingBase.java:2160) [EntityLivingBase.class:?]
at net.minecraft.entity.EntityLiving.onUpdate(EntityLiving.java:343) [EntityLiving.class:?]
at com.github.alexthe666.iceandfire.entity.EntityDragonBase.onUpdate(EntityDragonBase.java:594) [EntityDragonBase.class:?]
at net.minecraft.world.World.updateEntityWithOptionalForce(World.java:2086) [World.class:?]
at net.minecraft.world.WorldServer.updateEntityWithOptionalForce(WorldServer.java:864) [WorldServer.class:?]
at net.minecraft.world.World.updateEntity(World.java:2051) [World.class:?]
at net.minecraft.world.World.updateEntities(World.java:1882) [World.class:?]
at net.minecraft.world.WorldServer.updateEntities(WorldServer.java:637) [WorldServer.class:?]
at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:779) [MinecraftServer.class:?]
at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:683) [MinecraftServer.class:?]
at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:155) [integratedServer.class:?]
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:532) [MinecraftServer.class:?]
at java.lang.Thread.run(Unknown Source) [?:1.8.0_71]
[14:12:20] [server thread/ERROR] [FML]: SimpleChannelHandlerWrapper exception
java.lang.NullPointerException
at net.minecraftforge.fml.common.network.FMLOutboundHandler$OutboundTarget$5.selectNetworks(FMLOutboundHandler.java:131) ~[FMLOutboundHandler$OutboundTarget$5.class:?]
at net.minecraftforge.fml.common.network.FMLOutboundHandler.write(FMLOutboundHandler.java:273) ~[FMLOutboundHandler.class:?]
at io.netty.channel.AbstractChannelHandlerContext.invokeWrite(AbstractChannelHandlerContext.java:658) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:716) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:651) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:112) ~[MessageToMessageEncoder.class:4.0.23.Final]
at io.netty.handler.codec.MessageToMessageCodec.write(MessageToMessageCodec.java:116) ~[MessageToMessageCodec.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.invokeWrite(AbstractChannelHandlerContext.java:658) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:716) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.writeAndFlush(AbstractChannelHandlerContext.java:706) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.writeAndFlush(AbstractChannelHandlerContext.java:741) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.DefaultChannelPipeline.writeAndFlush(DefaultChannelPipeline.java:895) ~[DefaultChannelPipeline.class:4.0.23.Final]
at io.netty.channel.AbstractChannel.writeAndFlush(AbstractChannel.java:240) ~[AbstractChannel.class:4.0.23.Final]
at net.minecraftforge.fml.common.network.simpleimpl.SimpleNetworkWrapper.sendToAll(SimpleNetworkWrapper.java:215) [simpleNetworkWrapper.class:?]
at com.github.alexthe666.iceandfire.entity.EntityDragonBase.onLivingUpdate(EntityDragonBase.java:339) [EntityDragonBase.class:?]
at net.minecraft.entity.EntityLivingBase.onUpdate(EntityLivingBase.java:2160) [EntityLivingBase.class:?]
at net.minecraft.entity.EntityLiving.onUpdate(EntityLiving.java:343) [EntityLiving.class:?]
at com.github.alexthe666.iceandfire.entity.EntityDragonBase.onUpdate(EntityDragonBase.java:594) [EntityDragonBase.class:?]
at net.minecraft.world.World.updateEntityWithOptionalForce(World.java:2086) [World.class:?]
at net.minecraft.world.WorldServer.updateEntityWithOptionalForce(WorldServer.java:864) [WorldServer.class:?]
at net.minecraft.world.World.updateEntity(World.java:2051) [World.class:?]
at net.minecraft.world.World.updateEntities(World.java:1882) [World.class:?]
at net.minecraft.world.WorldServer.updateEntities(WorldServer.java:637) [WorldServer.class:?]
at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:779) [MinecraftServer.class:?]
at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:683) [MinecraftServer.class:?]
at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:155) [integratedServer.class:?]
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:532) [MinecraftServer.class:?]
at java.lang.Thread.run(Unknown Source) [?:1.8.0_71]
Apr 01, 2016 2:12:20 PM io.netty.channel.embedded.EmbeddedChannel recordException
WARNING: More than one exception was raised. Will report only the first one and log others.
java.lang.NullPointerException
at net.minecraftforge.fml.common.network.FMLOutboundHandler$OutboundTarget$5.selectNetworks(FMLOutboundHandler.java:131)
at net.minecraftforge.fml.common.network.FMLOutboundHandler.write(FMLOutboundHandler.java:273)
at io.netty.channel.AbstractChannelHandlerContext.invokeWrite(AbstractChannelHandlerContext.java:658)
at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:716)
at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:651)
at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:112)
at io.netty.handler.codec.MessageToMessageCodec.write(MessageToMessageCodec.java:116)
at io.netty.channel.AbstractChannelHandlerContext.invokeWrite(AbstractChannelHandlerContext.java:658)
at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:716)
at io.netty.channel.AbstractChannelHandlerContext.writeAndFlush(AbstractChannelHandlerContext.java:706)
at io.netty.channel.AbstractChannelHandlerContext.writeAndFlush(AbstractChannelHandlerContext.java:741)
at io.netty.channel.DefaultChannelPipeline.writeAndFlush(DefaultChannelPipeline.java:895)
at io.netty.channel.AbstractChannel.writeAndFlush(AbstractChannel.java:240)
at net.minecraftforge.fml.common.network.simpleimpl.SimpleNetworkWrapper.sendToAll(SimpleNetworkWrapper.java:215)
at com.github.alexthe666.iceandfire.entity.EntityDragonBase.onLivingUpdate(EntityDragonBase.java:339)
at net.minecraft.entity.EntityLivingBase.onUpdate(EntityLivingBase.java:2160)
at net.minecraft.entity.EntityLiving.onUpdate(EntityLiving.java:343)
at com.github.alexthe666.iceandfire.entity.EntityDragonBase.onUpdate(EntityDragonBase.java:594)
at net.minecraft.world.World.updateEntityWithOptionalForce(World.java:2086)
at net.minecraft.world.WorldServer.updateEntityWithOptionalForce(WorldServer.java:864)
at net.minecraft.world.World.updateEntity(World.java:2051)
at net.minecraft.world.World.updateEntities(World.java:1882)
at net.minecraft.world.WorldServer.updateEntities(WorldServer.java:637)
at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:779)
at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:683)
at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:155)
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:532)
at java.lang.Thread.run(Unknown Source)

[14:12:20] [server thread/ERROR] [FML]: FMLIndexedMessageCodec exception caught
java.lang.NullPointerException
at net.minecraftforge.fml.common.network.FMLOutboundHandler$OutboundTarget$5.selectNetworks(FMLOutboundHandler.java:131) ~[FMLOutboundHandler$OutboundTarget$5.class:?]
at net.minecraftforge.fml.common.network.FMLOutboundHandler.write(FMLOutboundHandler.java:273) ~[FMLOutboundHandler.class:?]
at io.netty.channel.AbstractChannelHandlerContext.invokeWrite(AbstractChannelHandlerContext.java:658) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:716) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:651) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:112) ~[MessageToMessageEncoder.class:4.0.23.Final]
at io.netty.handler.codec.MessageToMessageCodec.write(MessageToMessageCodec.java:116) ~[MessageToMessageCodec.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.invokeWrite(AbstractChannelHandlerContext.java:658) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:716) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.writeAndFlush(AbstractChannelHandlerContext.java:706) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.writeAndFlush(AbstractChannelHandlerContext.java:741) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.DefaultChannelPipeline.writeAndFlush(DefaultChannelPipeline.java:895) ~[DefaultChannelPipeline.class:4.0.23.Final]
at io.netty.channel.AbstractChannel.writeAndFlush(AbstractChannel.java:240) ~[AbstractChannel.class:4.0.23.Final]
at net.minecraftforge.fml.common.network.simpleimpl.SimpleNetworkWrapper.sendToAll(SimpleNetworkWrapper.java:215) [simpleNetworkWrapper.class:?]
at com.github.alexthe666.iceandfire.entity.EntityDragonBase.onLivingUpdate(EntityDragonBase.java:339) [EntityDragonBase.class:?]
at net.minecraft.entity.EntityLivingBase.onUpdate(EntityLivingBase.java:2160) [EntityLivingBase.class:?]
at net.minecraft.entity.EntityLiving.onUpdate(EntityLiving.java:343) [EntityLiving.class:?]
at com.github.alexthe666.iceandfire.entity.EntityDragonBase.onUpdate(EntityDragonBase.java:594) [EntityDragonBase.class:?]
at net.minecraft.world.World.updateEntityWithOptionalForce(World.java:2086) [World.class:?]
at net.minecraft.world.WorldServer.updateEntityWithOptionalForce(WorldServer.java:864) [WorldServer.class:?]
at net.minecraft.world.World.updateEntity(World.java:2051) [World.class:?]
at net.minecraft.world.World.updateEntities(World.java:1882) [World.class:?]
at net.minecraft.world.WorldServer.updateEntities(WorldServer.java:637) [WorldServer.class:?]
at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:779) [MinecraftServer.class:?]
at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:683) [MinecraftServer.class:?]
at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:155) [integratedServer.class:?]
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:532) [MinecraftServer.class:?]
at java.lang.Thread.run(Unknown Source) [?:1.8.0_71]
[14:12:20] [server thread/ERROR] [FML]: SimpleChannelHandlerWrapper exception
java.lang.NullPointerException
at net.minecraftforge.fml.common.network.FMLOutboundHandler$OutboundTarget$5.selectNetworks(FMLOutboundHandler.java:131) ~[FMLOutboundHandler$OutboundTarget$5.class:?]
at net.minecraftforge.fml.common.network.FMLOutboundHandler.write(FMLOutboundHandler.java:273) ~[FMLOutboundHandler.class:?]
at io.netty.channel.AbstractChannelHandlerContext.invokeWrite(AbstractChannelHandlerContext.java:658) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:716) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:651) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:112) ~[MessageToMessageEncoder.class:4.0.23.Final]
at io.netty.handler.codec.MessageToMessageCodec.write(MessageToMessageCodec.java:116) ~[MessageToMessageCodec.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.invokeWrite(AbstractChannelHandlerContext.java:658) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:716) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.writeAndFlush(AbstractChannelHandlerContext.java:706) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.writeAndFlush(AbstractChannelHandlerContext.java:741) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.DefaultChannelPipeline.writeAndFlush(DefaultChannelPipeline.java:895) ~[DefaultChannelPipeline.class:4.0.23.Final]
at io.netty.channel.AbstractChannel.writeAndFlush(AbstractChannel.java:240) ~[AbstractChannel.class:4.0.23.Final]
at net.minecraftforge.fml.common.network.simpleimpl.SimpleNetworkWrapper.sendToAll(SimpleNetworkWrapper.java:215) [simpleNetworkWrapper.class:?]
at com.github.alexthe666.iceandfire.entity.EntityDragonBase.onLivingUpdate(EntityDragonBase.java:339) [EntityDragonBase.class:?]
at net.minecraft.entity.EntityLivingBase.onUpdate(EntityLivingBase.java:2160) [EntityLivingBase.class:?]
at net.minecraft.entity.EntityLiving.onUpdate(EntityLiving.java:343) [EntityLiving.class:?]
at com.github.alexthe666.iceandfire.entity.EntityDragonBase.onUpdate(EntityDragonBase.java:594) [EntityDragonBase.class:?]
at net.minecraft.world.World.updateEntityWithOptionalForce(World.java:2086) [World.class:?]
at net.minecraft.world.WorldServer.updateEntityWithOptionalForce(WorldServer.java:864) [WorldServer.class:?]
at net.minecraft.world.World.updateEntity(World.java:2051) [World.class:?]
at net.minecraft.world.World.updateEntities(World.java:1882) [World.class:?]
at net.minecraft.world.WorldServer.updateEntities(WorldServer.java:637) [WorldServer.class:?]
at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:779) [MinecraftServer.class:?]
at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:683) [MinecraftServer.class:?]
at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:155) [integratedServer.class:?]
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:532) [MinecraftServer.class:?]
at java.lang.Thread.run(Unknown Source) [?:1.8.0_71]
Apr 01, 2016 2:12:20 PM io.netty.channel.embedded.EmbeddedChannel recordException
WARNING: More than one exception was raised. Will report only the first one and log others.
java.lang.NullPointerException
at net.minecraftforge.fml.common.network.FMLOutboundHandler$OutboundTarget$5.selectNetworks(FMLOutboundHandler.java:131)
at net.minecraftforge.fml.common.network.FMLOutboundHandler.write(FMLOutboundHandler.java:273)
at io.netty.channel.AbstractChannelHandlerContext.invokeWrite(AbstractChannelHandlerContext.java:658)
at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:716)
at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:651)
at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:112)
at io.netty.handler.codec.MessageToMessageCodec.write(MessageToMessageCodec.java:116)
at io.netty.channel.AbstractChannelHandlerContext.invokeWrite(AbstractChannelHandlerContext.java:658)
at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:716)
at io.netty.channel.AbstractChannelHandlerContext.writeAndFlush(AbstractChannelHandlerContext.java:706)
at io.netty.channel.AbstractChannelHandlerContext.writeAndFlush(AbstractChannelHandlerContext.java:741)
at io.netty.channel.DefaultChannelPipeline.writeAndFlush(DefaultChannelPipeline.java:895)
at io.netty.channel.AbstractChannel.writeAndFlush(AbstractChannel.java:240)
at net.minecraftforge.fml.common.network.simpleimpl.SimpleNetworkWrapper.sendToAll(SimpleNetworkWrapper.java:215)
at com.github.alexthe666.iceandfire.entity.EntityDragonBase.onLivingUpdate(EntityDragonBase.java:339)
at net.minecraft.entity.EntityLivingBase.onUpdate(EntityLivingBase.java:2160)
at net.minecraft.entity.EntityLiving.onUpdate(EntityLiving.java:343)
at com.github.alexthe666.iceandfire.entity.EntityDragonBase.onUpdate(EntityDragonBase.java:594)
at net.minecraft.world.World.updateEntityWithOptionalForce(World.java:2086)
at net.minecraft.world.WorldServer.updateEntityWithOptionalForce(WorldServer.java:864)
at net.minecraft.world.World.updateEntity(World.java:2051)
at net.minecraft.world.World.updateEntities(World.java:1882)
at net.minecraft.world.WorldServer.updateEntities(WorldServer.java:637)
at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:779)
at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:683)
at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:155)
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:532)
at java.lang.Thread.run(Unknown Source)

[14:12:22] [Netty Local Client IO #0/ERROR] [FML]: EntitySpawnHandler exception
java.lang.NullPointerException
at net.minecraftforge.fml.common.network.internal.EntitySpawnHandler.channelRead0(EntitySpawnHandler.java:34) ~[EntitySpawnHandler.class:?]
at net.minecraftforge.fml.common.network.internal.EntitySpawnHandler.channelRead0(EntitySpawnHandler.java:29) ~[EntitySpawnHandler.class:?]
at io.netty.channel.SimpleChannelInboundHandler.channelRead(SimpleChannelInboundHandler.java:105) ~[simpleChannelInboundHandler.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:333) [AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:319) [AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:103) [MessageToMessageDecoder.class:4.0.23.Final]
at io.netty.handler.codec.MessageToMessageCodec.channelRead(MessageToMessageCodec.java:111) [MessageToMessageCodec.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:333) [AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:319) [AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:787) [DefaultChannelPipeline.class:4.0.23.Final]
at io.netty.channel.embedded.EmbeddedChannel.writeInbound(EmbeddedChannel.java:169) [EmbeddedChannel.class:4.0.23.Final]
at net.minecraftforge.fml.common.network.internal.FMLProxyPacket.processPacket(FMLProxyPacket.java:90) [FMLProxyPacket.class:?]
at net.minecraft.network.NetworkManager.channelRead0(NetworkManager.java:155) [NetworkManager.class:?]
at net.minecraft.network.NetworkManager.channelRead0(NetworkManager.java:50) [NetworkManager.class:?]
at io.netty.channel.SimpleChannelInboundHandler.channelRead(SimpleChannelInboundHandler.java:105) [simpleChannelInboundHandler.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:333) [AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:319) [AbstractChannelHandlerContext.class:4.0.23.Final]
at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher.handleClientSideCustomPacket(NetworkDispatcher.java:390) [NetworkDispatcher.class:?]
at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher.channelRead0(NetworkDispatcher.java:256) [NetworkDispatcher.class:?]
at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher.channelRead0(NetworkDispatcher.java:53) [NetworkDispatcher.class:?]
at io.netty.channel.SimpleChannelInboundHandler.channelRead(SimpleChannelInboundHandler.java:105) [simpleChannelInboundHandler.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:333) [AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:319) [AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:787) [DefaultChannelPipeline.class:4.0.23.Final]
at io.netty.channel.local.LocalChannel.finishPeerRead(LocalChannel.java:326) [LocalChannel.class:4.0.23.Final]
at io.netty.channel.local.LocalChannel.access$400(LocalChannel.java:45) [LocalChannel.class:4.0.23.Final]
at io.netty.channel.local.LocalChannel$5.run(LocalChannel.java:312) [LocalChannel$5.class:4.0.23.Final]
at io.netty.channel.local.LocalEventLoop.run(LocalEventLoop.java:33) [LocalEventLoop.class:4.0.23.Final]
at io.netty.util.concurrent.SingleThreadEventExecutor$2.run(SingleThreadEventExecutor.java:116) [singleThreadEventExecutor$2.class:4.0.23.Final]
at java.lang.Thread.run(Unknown Source) [?:1.8.0_71]
[14:12:22] [Netty Local Client IO #0/ERROR] [FML]: OpenGuiHandler exception
java.lang.NullPointerException
at net.minecraftforge.fml.common.network.internal.EntitySpawnHandler.channelRead0(EntitySpawnHandler.java:34) ~[EntitySpawnHandler.class:?]
at net.minecraftforge.fml.common.network.internal.EntitySpawnHandler.channelRead0(EntitySpawnHandler.java:29) ~[EntitySpawnHandler.class:?]
at io.netty.channel.SimpleChannelInboundHandler.channelRead(SimpleChannelInboundHandler.java:105) ~[simpleChannelInboundHandler.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:333) [AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:319) [AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:103) [MessageToMessageDecoder.class:4.0.23.Final]
at io.netty.handler.codec.MessageToMessageCodec.channelRead(MessageToMessageCodec.java:111) [MessageToMessageCodec.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:333) [AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:319) [AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:787) [DefaultChannelPipeline.class:4.0.23.Final]
at io.netty.channel.embedded.EmbeddedChannel.writeInbound(EmbeddedChannel.java:169) [EmbeddedChannel.class:4.0.23.Final]
at net.minecraftforge.fml.common.network.internal.FMLProxyPacket.processPacket(FMLProxyPacket.java:90) [FMLProxyPacket.class:?]
at net.minecraft.network.NetworkManager.channelRead0(NetworkManager.java:155) [NetworkManager.class:?]
at net.minecraft.network.NetworkManager.channelRead0(NetworkManager.java:50) [NetworkManager.class:?]
at io.netty.channel.SimpleChannelInboundHandler.channelRead(SimpleChannelInboundHandler.java:105) [simpleChannelInboundHandler.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:333) [AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:319) [AbstractChannelHandlerContext.class:4.0.23.Final]
at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher.handleClientSideCustomPacket(NetworkDispatcher.java:390) [NetworkDispatcher.class:?]
at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher.channelRead0(NetworkDispatcher.java:256) [NetworkDispatcher.class:?]
at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher.channelRead0(NetworkDispatcher.java:53) [NetworkDispatcher.class:?]
at io.netty.channel.SimpleChannelInboundHandler.channelRead(SimpleChannelInboundHandler.java:105) [simpleChannelInboundHandler.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:333) [AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:319) [AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:787) [DefaultChannelPipeline.class:4.0.23.Final]
at io.netty.channel.local.LocalChannel.finishPeerRead(LocalChannel.java:326) [LocalChannel.class:4.0.23.Final]
at io.netty.channel.local.LocalChannel.access$400(LocalChannel.java:45) [LocalChannel.class:4.0.23.Final]
at io.netty.channel.local.LocalChannel$5.run(LocalChannel.java:312) [LocalChannel$5.class:4.0.23.Final]
at io.netty.channel.local.LocalEventLoop.run(LocalEventLoop.java:33) [LocalEventLoop.class:4.0.23.Final]
at io.netty.util.concurrent.SingleThreadEventExecutor$2.run(SingleThreadEventExecutor.java:116) [singleThreadEventExecutor$2.class:4.0.23.Final]
at java.lang.Thread.run(Unknown Source) [?:1.8.0_71]
[14:12:22] [Netty Local Client IO #0/ERROR] [FML]: HandshakeCompletionHandler exception
java.lang.NullPointerException
at net.minecraftforge.fml.common.network.internal.EntitySpawnHandler.channelRead0(EntitySpawnHandler.java:34) ~[EntitySpawnHandler.class:?]
at net.minecraftforge.fml.common.network.internal.EntitySpawnHandler.channelRead0(EntitySpawnHandler.java:29) ~[EntitySpawnHandler.class:?]
at io.netty.channel.SimpleChannelInboundHandler.channelRead(SimpleChannelInboundHandler.java:105) ~[simpleChannelInboundHandler.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:333) [AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:319) [AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:103) [MessageToMessageDecoder.class:4.0.23.Final]
at io.netty.handler.codec.MessageToMessageCodec.channelRead(MessageToMessageCodec.java:111) [MessageToMessageCodec.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:333) [AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:319) [AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:787) [DefaultChannelPipeline.class:4.0.23.Final]
at io.netty.channel.embedded.EmbeddedChannel.writeInbound(EmbeddedChannel.java:169) [EmbeddedChannel.class:4.0.23.Final]
at net.minecraftforge.fml.common.network.internal.FMLProxyPacket.processPacket(FMLProxyPacket.java:90) [FMLProxyPacket.class:?]
at net.minecraft.network.NetworkManager.channelRead0(NetworkManager.java:155) [NetworkManager.class:?]
at net.minecraft.network.NetworkManager.channelRead0(NetworkManager.java:50) [NetworkManager.class:?]
at io.netty.channel.SimpleChannelInboundHandler.channelRead(SimpleChannelInboundHandler.java:105) [simpleChannelInboundHandler.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:333) [AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:319) [AbstractChannelHandlerContext.class:4.0.23.Final]
at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher.handleClientSideCustomPacket(NetworkDispatcher.java:390) [NetworkDispatcher.class:?]
at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher.channelRead0(NetworkDispatcher.java:256) [NetworkDispatcher.class:?]
at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher.channelRead0(NetworkDispatcher.java:53) [NetworkDispatcher.class:?]
at io.netty.channel.SimpleChannelInboundHandler.channelRead(SimpleChannelInboundHandler.java:105) [simpleChannelInboundHandler.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:333) [AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:319) [AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:787) [DefaultChannelPipeline.class:4.0.23.Final]
at io.netty.channel.local.LocalChannel.finishPeerRead(LocalChannel.java:326) [LocalChannel.class:4.0.23.Final]
at io.netty.channel.local.LocalChannel.access$400(LocalChannel.java:45) [LocalChannel.class:4.0.23.Final]
at io.netty.channel.local.LocalChannel$5.run(LocalChannel.java:312) [LocalChannel$5.class:4.0.23.Final]
at io.netty.channel.local.LocalEventLoop.run(LocalEventLoop.java:33) [LocalEventLoop.class:4.0.23.Final]
at io.netty.util.concurrent.SingleThreadEventExecutor$2.run(SingleThreadEventExecutor.java:116) [singleThreadEventExecutor$2.class:4.0.23.Final]
at java.lang.Thread.run(Unknown Source) [?:1.8.0_71]
[14:12:22] [Netty Local Client IO #0/ERROR] [FML]: There was a critical exception handling a packet on channel FML
java.lang.NullPointerException
at net.minecraftforge.fml.common.network.internal.EntitySpawnHandler.channelRead0(EntitySpawnHandler.java:34) ~[EntitySpawnHandler.class:?]
at net.minecraftforge.fml.common.network.internal.EntitySpawnHandler.channelRead0(EntitySpawnHandler.java:29) ~[EntitySpawnHandler.class:?]
at io.netty.channel.SimpleChannelInboundHandler.channelRead(SimpleChannelInboundHandler.java:105) ~[simpleChannelInboundHandler.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:333) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:319) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:103) ~[MessageToMessageDecoder.class:4.0.23.Final]
at io.netty.handler.codec.MessageToMessageCodec.channelRead(MessageToMessageCodec.java:111) ~[MessageToMessageCodec.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:333) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:319) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:787) ~[DefaultChannelPipeline.class:4.0.23.Final]
at io.netty.channel.embedded.EmbeddedChannel.writeInbound(EmbeddedChannel.java:169) ~[EmbeddedChannel.class:4.0.23.Final]
at net.minecraftforge.fml.common.network.internal.FMLProxyPacket.processPacket(FMLProxyPacket.java:90) [FMLProxyPacket.class:?]
at net.minecraft.network.NetworkManager.channelRead0(NetworkManager.java:155) [NetworkManager.class:?]
at net.minecraft.network.NetworkManager.channelRead0(NetworkManager.java:50) [NetworkManager.class:?]
at io.netty.channel.SimpleChannelInboundHandler.channelRead(SimpleChannelInboundHandler.java:105) [simpleChannelInboundHandler.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:333) [AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:319) [AbstractChannelHandlerContext.class:4.0.23.Final]
at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher.handleClientSideCustomPacket(NetworkDispatcher.java:390) [NetworkDispatcher.class:?]
at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher.channelRead0(NetworkDispatcher.java:256) [NetworkDispatcher.class:?]
at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher.channelRead0(NetworkDispatcher.java:53) [NetworkDispatcher.class:?]
at io.netty.channel.SimpleChannelInboundHandler.channelRead(SimpleChannelInboundHandler.java:105) [simpleChannelInboundHandler.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:333) [AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:319) [AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:787) [DefaultChannelPipeline.class:4.0.23.Final]
at io.netty.channel.local.LocalChannel.finishPeerRead(LocalChannel.java:326) [LocalChannel.class:4.0.23.Final]
at io.netty.channel.local.LocalChannel.access$400(LocalChannel.java:45) [LocalChannel.class:4.0.23.Final]
at io.netty.channel.local.LocalChannel$5.run(LocalChannel.java:312) [LocalChannel$5.class:4.0.23.Final]
at io.netty.channel.local.LocalEventLoop.run(LocalEventLoop.java:33) [LocalEventLoop.class:4.0.23.Final]
at io.netty.util.concurrent.SingleThreadEventExecutor$2.run(SingleThreadEventExecutor.java:116) [singleThreadEventExecutor$2.class:4.0.23.Final]
at java.lang.Thread.run(Unknown Source) [?:1.8.0_71]
[14:12:22] [server thread/INFO]: Alexthe666 lost connection: TextComponent{text='Disconnected', siblings=[], style=Style{hasParent=false, color=null, bold=null, italic=null, underlined=null, obfuscated=null, clickEvent=null, hoverEvent=null, insertion=null}}
[14:12:22] [server thread/INFO]: Alexthe666 left the game
[14:12:22] [server thread/INFO]: Stopping singleplayer server as player logged out
[14:12:22] [server thread/INFO]: Stopping server
[14:12:22] [server thread/INFO]: Saving players
[14:12:22] [server thread/INFO]: Saving worlds
[14:12:22] [server thread/INFO]: Saving chunks for level 'New World'/Overworld
[14:12:22] [server thread/INFO]: Saving chunks for level 'New World'/Nether
[14:12:22] [server thread/INFO]: Saving chunks for level 'New World'/The End
[14:12:22] [server thread/ERROR] [FML]: Exception caught during firing event net.minecraftforge.event.world.WorldEvent$Unload@15646c1e:
java.lang.NullPointerException
at net.minecraftforge.common.ForgeChunkManager.unloadWorld(ForgeChunkManager.java:601) ~[ForgeChunkManager.class:?]
at net.minecraftforge.common.ForgeInternalHandler.onDimensionUnload(ForgeInternalHandler.java:76) ~[ForgeInternalHandler.class:?]
at net.minecraftforge.fml.common.eventhandler.ASMEventHandler_1_ForgeInternalHandler_onDimensionUnload_Unload.invoke(.dynamic) ~[?:?]
at net.minecraftforge.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:49) ~[ASMEventHandler.class:?]
at net.minecraftforge.fml.common.eventhandler.EventBus.post(EventBus.java:140) [EventBus.class:?]
at net.minecraft.server.MinecraftServer.stopServer(MinecraftServer.java:458) [MinecraftServer.class:?]
at net.minecraft.server.integrated.IntegratedServer.stopServer(IntegratedServer.java:368) [integratedServer.class:?]
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:585) [MinecraftServer.class:?]
at java.lang.Thread.run(Unknown Source) [?:1.8.0_71]
[14:12:22] [server thread/ERROR] [FML]: Index: 1 Listeners:
[14:12:22] [server thread/ERROR] [FML]: 0: HIGHEST
[14:12:22] [server thread/ERROR] [FML]: 1: ASM: net.minecraftforge.common.ForgeInternalHandler@119b837 onDimensionUnload(Lnet/minecraftforge/event/world/WorldEvent$Unload;)V
[14:12:22] [server thread/ERROR]: Exception stopping the server
java.lang.NullPointerException
at net.minecraftforge.common.ForgeChunkManager.unloadWorld(ForgeChunkManager.java:601) ~[ForgeChunkManager.class:?]
at net.minecraftforge.common.ForgeInternalHandler.onDimensionUnload(ForgeInternalHandler.java:76) ~[ForgeInternalHandler.class:?]
at net.minecraftforge.fml.common.eventhandler.ASMEventHandler_1_ForgeInternalHandler_onDimensionUnload_Unload.invoke(.dynamic) ~[?:?]
at net.minecraftforge.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:49) ~[ASMEventHandler.class:?]
at net.minecraftforge.fml.common.eventhandler.EventBus.post(EventBus.java:140) ~[EventBus.class:?]
at net.minecraft.server.MinecraftServer.stopServer(MinecraftServer.java:458) ~[MinecraftServer.class:?]
at net.minecraft.server.integrated.IntegratedServer.stopServer(IntegratedServer.java:368) ~[integratedServer.class:?]
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:585) [MinecraftServer.class:?]
at java.lang.Thread.run(Unknown Source) [?:1.8.0_71]
[14:12:22] [server thread/INFO] [FML]: Applying holder lookups
[14:12:22] [server thread/INFO] [FML]: Holder lookups applied

 

 

Posted

Look at these linesof code right here from your printout:

 

at com.github.alexthe666.iceandfire.entity.EntityDragonBase.onUpdate(EntityDragonBase.java:594) [EntityDragonBase.class:?]
at com.github.alexthe666.iceandfire.entity.EntityDragonBase.onLivingUpdate(EntityDragonBase.java:339) [EntityDragonBase.class:?]

 

Go into those classes and look at the lines it specifies. Things like that happen to me often, and I just look through the console output to see where it's  not fully working. Check that line and see if anything might be wrong with it.

"War doesn't determine who is right. Only who is left." -Bertrand Russell

Posted
Posted

Hmm, after updating to a later version i get a different error. Instead of crashing, my game freezes. Here's the log:

 

 

2016-04-07 08:43:56,644 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream

2016-04-07 08:43:56,647 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream

[08:43:56] [main/INFO] [GradleStart]: Extra: [--password:, dylan001, --username:, [email protected]]

[08:43:56] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --assetsDir, C:/Users/alexr_000/.gradle/caches/minecraft/assets, --assetIndex, 1.9, --accessToken{REDACTED}, --version, 1.9, --tweakClass, net.minecraftforge.fml.common.launcher.FMLTweaker, --password:, dylan001, --username:, [email protected], --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker]

[08:43:56] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker

[08:43:56] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker

[08:43:56] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker

[08:43:56] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker

[08:43:57] [main/INFO] [FML]: Forge Mod Loader version 12.16.0.1854 for Minecraft 1.9 loading

[08:43:57] [main/INFO] [FML]: Java is Java HotSpot 64-Bit Server VM, version 1.8.0_71, running on Windows 8.1:amd64:6.3, installed at C:\Program Files\Java\jre1.8.0_71

[08:43:57] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation

[08:43:57] [main/INFO] [FML]: Found a command line coremod : net.ilexiconn.llibrary.server.asm.LLibraryPlugin

[08:43:57] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker

[08:43:57] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin

[08:43:57] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin

[08:43:57] [main/INFO] [GradleStart]: Injecting location in coremod net.ilexiconn.llibrary.server.asm.LLibraryPlugin

[08:43:57] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker

[08:43:57] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker

[08:43:57] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker

[08:43:57] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker

[08:43:57] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker

[08:43:57] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper

[08:43:57] [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work!

[08:44:00] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing

[08:44:00] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper

[08:44:00] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper

[08:44:00] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker

[08:44:01] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker

[08:44:01] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker

[08:44:01] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker

[08:44:01] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main}

2016-04-07 08:44:02,907 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream

2016-04-07 08:44:03,026 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream

2016-04-07 08:44:03,036 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream

[08:44:03] [main/INFO] [sTDOUT]: [net.minecraft.client.main.Main:main:59]: Completely ignored arguments: [--password:, dylan001, --username:, [email protected]]

[08:44:04] [Client thread/INFO]: Setting user: Player58

[08:44:10] [Client thread/INFO]: LWJGL Version: 2.9.4

[08:44:12] [Client thread/INFO] [sTDOUT]: [net.minecraftforge.fml.client.SplashProgress:start:200]: ---- Minecraft Crash Report ----

// I let you down. Sorry :(

 

Time: 4/7/16 8:44 AM

Description: Loading screen debug info

 

This is just a prompt for computer specs to be printed. THIS IS NOT A ERROR

 

 

A detailed walkthrough of the error, its code path and all known details is as follows:

---------------------------------------------------------------------------------------

 

-- System Details --

Details:

Minecraft Version: 1.9

Operating System: Windows 8.1 (amd64) version 6.3

Java Version: 1.8.0_71, Oracle Corporation

Java VM Version: Java HotSpot 64-Bit Server VM (mixed mode), Oracle Corporation

Memory: 337571688 bytes (321 MB) / 609746944 bytes (581 MB) up to 1853358080 bytes (1767 MB)

JVM Flags: 0 total;

IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0

FML:

Loaded coremods (and transformers):

llibrary (unknown)

  net.ilexiconn.llibrary.server.asm.LLibraryClassTransformer

GL info: ' Vendor: 'Intel' Version: '4.2.0 - Build 10.18.10.3316' Renderer: 'Intel® HD Graphics 4400'

[08:44:12] [Client thread/INFO] [FML]: MinecraftForge v12.16.0.1854 Initialized

[08:44:12] [Client thread/INFO] [FML]: Replaced 207 ore recipes

[08:44:12] [Client thread/INFO] [FML]: Found 0 mods from the command line. Injecting into mod discoverer

[08:44:12] [Client thread/INFO] [FML]: Searching C:\Users\alexr_000\Desktop\Mods\Ice_and_Fire\run\mods for mods

[08:44:16] [Client thread/INFO] [FML]: Forge Mod Loader has identified 5 mods to load

[08:44:17] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, iceandfire, llibrary] at CLIENT

[08:44:17] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, iceandfire, llibrary] at SERVER

[08:44:19] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Ice and Fire, FMLFileResourcePack:LLibrary

[08:44:19] [Client thread/INFO] [FML]: Processing ObjectHolder annotations

[08:44:19] [Client thread/INFO] [FML]: Found 418 ObjectHolder annotations

[08:44:19] [Client thread/INFO] [FML]: Identifying ItemStackHolder annotations

[08:44:19] [Client thread/INFO] [FML]: Found 0 ItemStackHolder annotations

[08:44:19] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0

[08:44:19] [Forge Version Check/INFO] [ForgeVersionCheck]: [Forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json

[08:44:19] [Forge Version Check/INFO] [ForgeVersionCheck]: [Forge] Found status: BETA Target: null

[08:44:20] [Client thread/INFO] [FML]: Applying holder lookups

[08:44:20] [Client thread/INFO] [FML]: Holder lookups applied

[08:44:20] [Client thread/INFO] [FML]: Injecting itemstacks

[08:44:20] [Client thread/INFO] [FML]: Itemstack injection complete

[08:44:31] [Client thread/WARN]: File minecraft:sounds/firedragon_child_idle_0.ogg does not exist, cannot add it to event iceandfire:firedragon.child.idle

[08:44:31] [Client thread/WARN]: File minecraft:sounds/firedragon_child_idle_0.ogg does not exist, cannot add it to event iceandfire:firedragon.child.hurt

[08:44:31] [Client thread/WARN]: File minecraft:sounds/firedragon_child_idle_0.ogg does not exist, cannot add it to event iceandfire:firedragon.child.death

[08:44:31] [Client thread/WARN]: File minecraft:sounds/firedragon_child_idle_0.ogg does not exist, cannot add it to event iceandfire:firedragon.child.roar

[08:44:31] [Client thread/WARN]: File minecraft:sounds/firedragon_teen_idle_0.ogg does not exist, cannot add it to event iceandfire:firedragon.teen.idle

[08:44:31] [Client thread/WARN]: File minecraft:sounds/firedragon_teen_idle_1.ogg does not exist, cannot add it to event iceandfire:firedragon.teen.idle

[08:44:31] [Client thread/WARN]: File minecraft:sounds/firedragon_teen_idle_2.ogg does not exist, cannot add it to event iceandfire:firedragon.teen.idle

[08:44:31] [Client thread/WARN]: File minecraft:sounds/firedragon_teen_idle_3.ogg does not exist, cannot add it to event iceandfire:firedragon.teen.idle

[08:44:31] [Client thread/WARN]: File minecraft:sounds/firedragon_teen_idle_4.ogg does not exist, cannot add it to event iceandfire:firedragon.teen.idle

[08:44:31] [Client thread/WARN]: File minecraft:sounds/firedragon_teen_idle_5.ogg does not exist, cannot add it to event iceandfire:firedragon.teen.idle

[08:44:31] [Client thread/WARN]: File minecraft:sounds/firedragon_teen_hurt_0.ogg does not exist, cannot add it to event iceandfire:firedragon.teen.hurt

[08:44:31] [Client thread/WARN]: File minecraft:sounds/firedragon_teen_hurt_1.ogg does not exist, cannot add it to event iceandfire:firedragon.teen.hurt

[08:44:31] [Client thread/WARN]: File minecraft:sounds/firedragon_teen_die_0.ogg does not exist, cannot add it to event iceandfire:firedragon.teen.death

[08:44:32] [Client thread/WARN]: File minecraft:sounds/firedragon_teen_roar_0.ogg does not exist, cannot add it to event iceandfire:firedragon.teen.roar

[08:44:32] [Client thread/WARN]: File minecraft:sounds/firedragon_teen_roar_1.ogg does not exist, cannot add it to event iceandfire:firedragon.teen.roar

[08:44:32] [Client thread/WARN]: File minecraft:sounds/firedragon_adult_idle_0.ogg does not exist, cannot add it to event iceandfire:firedragon.adult.idle

[08:44:32] [Client thread/WARN]: File minecraft:sounds/firedragon_adult_idle_1.ogg does not exist, cannot add it to event iceandfire:firedragon.adult.idle

[08:44:32] [Client thread/WARN]: File minecraft:sounds/firedragon_adult_idle_2.ogg does not exist, cannot add it to event iceandfire:firedragon.adult.idle

[08:44:32] [Client thread/WARN]: File minecraft:sounds/firedragon_adult_idle_3.ogg does not exist, cannot add it to event iceandfire:firedragon.adult.idle

[08:44:32] [Client thread/WARN]: File minecraft:sounds/firedragon_adult_hurt_0.ogg does not exist, cannot add it to event iceandfire:firedragon.adult.hurt

[08:44:32] [Client thread/WARN]: File minecraft:sounds/firedragon_adult_hurt_1.ogg does not exist, cannot add it to event iceandfire:firedragon.adult.hurt

[08:44:32] [Client thread/WARN]: File minecraft:sounds/firedragon_adult_hurt_2.ogg does not exist, cannot add it to event iceandfire:firedragon.adult.hurt

[08:44:32] [Client thread/WARN]: File minecraft:sounds/firedragon_adult_hurt_0.ogg does not exist, cannot add it to event iceandfire:firedragon.adult.death

[08:44:32] [Client thread/WARN]: File minecraft:sounds/firedragon_adult_hurt_1.ogg does not exist, cannot add it to event iceandfire:firedragon.adult.death

[08:44:32] [Client thread/WARN]: File minecraft:sounds/firedragon_adult_hurt_2.ogg does not exist, cannot add it to event iceandfire:firedragon.adult.death

[08:44:32] [Client thread/WARN]: File minecraft:sounds/firedragon_adult_roar_0.ogg does not exist, cannot add it to event iceandfire:firedragon.adult.roar

[08:44:32] [Client thread/WARN]: File minecraft:sounds/firedragon_adult_roar_1.ogg does not exist, cannot add it to event iceandfire:firedragon.adult.roar

[08:44:32] [Client thread/WARN]: File minecraft:sounds/egg_hatch.ogg does not exist, cannot add it to event iceandfire:dragonegg.hatch

[08:44:32] [sound Library Loader/INFO]: Starting up SoundSystem...

[08:44:32] [Thread-8/INFO]: Initializing LWJGL OpenAL

[08:44:32] [Thread-8/INFO]: (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)

[08:44:33] [Thread-8/INFO]: OpenAL initialized.

[08:44:33] [sound Library Loader/INFO]: Sound engine started

[08:44:46] [Client thread/INFO] [FML]: Max texture size: 8192

[08:44:46] [Client thread/INFO]: Created: 16x16 textures-atlas

[08:44:49] [Client thread/INFO] [FML]: Injecting itemstacks

[08:44:49] [Client thread/INFO] [FML]: Itemstack injection complete

[08:44:49] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 5 mods

[08:44:49] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Ice and Fire, FMLFileResourcePack:LLibrary

[08:44:55] [Client thread/WARN]: File minecraft:sounds/firedragon_child_idle_0.ogg does not exist, cannot add it to event iceandfire:firedragon.child.idle

[08:44:55] [Client thread/WARN]: File minecraft:sounds/firedragon_child_idle_0.ogg does not exist, cannot add it to event iceandfire:firedragon.child.hurt

[08:44:55] [Client thread/WARN]: File minecraft:sounds/firedragon_child_idle_0.ogg does not exist, cannot add it to event iceandfire:firedragon.child.death

[08:44:55] [Client thread/WARN]: File minecraft:sounds/firedragon_child_idle_0.ogg does not exist, cannot add it to event iceandfire:firedragon.child.roar

[08:44:55] [Client thread/WARN]: File minecraft:sounds/firedragon_teen_idle_0.ogg does not exist, cannot add it to event iceandfire:firedragon.teen.idle

[08:44:55] [Client thread/WARN]: File minecraft:sounds/firedragon_teen_idle_1.ogg does not exist, cannot add it to event iceandfire:firedragon.teen.idle

[08:44:55] [Client thread/WARN]: File minecraft:sounds/firedragon_teen_idle_2.ogg does not exist, cannot add it to event iceandfire:firedragon.teen.idle

[08:44:55] [Client thread/WARN]: File minecraft:sounds/firedragon_teen_idle_3.ogg does not exist, cannot add it to event iceandfire:firedragon.teen.idle

[08:44:55] [Client thread/WARN]: File minecraft:sounds/firedragon_teen_idle_4.ogg does not exist, cannot add it to event iceandfire:firedragon.teen.idle

[08:44:55] [Client thread/WARN]: File minecraft:sounds/firedragon_teen_idle_5.ogg does not exist, cannot add it to event iceandfire:firedragon.teen.idle

[08:44:55] [Client thread/WARN]: File minecraft:sounds/firedragon_teen_hurt_0.ogg does not exist, cannot add it to event iceandfire:firedragon.teen.hurt

[08:44:55] [Client thread/WARN]: File minecraft:sounds/firedragon_teen_hurt_1.ogg does not exist, cannot add it to event iceandfire:firedragon.teen.hurt

[08:44:55] [Client thread/WARN]: File minecraft:sounds/firedragon_teen_die_0.ogg does not exist, cannot add it to event iceandfire:firedragon.teen.death

[08:44:55] [Client thread/WARN]: File minecraft:sounds/firedragon_teen_roar_0.ogg does not exist, cannot add it to event iceandfire:firedragon.teen.roar

[08:44:55] [Client thread/WARN]: File minecraft:sounds/firedragon_teen_roar_1.ogg does not exist, cannot add it to event iceandfire:firedragon.teen.roar

[08:44:55] [Client thread/WARN]: File minecraft:sounds/firedragon_adult_idle_0.ogg does not exist, cannot add it to event iceandfire:firedragon.adult.idle

[08:44:55] [Client thread/WARN]: File minecraft:sounds/firedragon_adult_idle_1.ogg does not exist, cannot add it to event iceandfire:firedragon.adult.idle

[08:44:55] [Client thread/WARN]: File minecraft:sounds/firedragon_adult_idle_2.ogg does not exist, cannot add it to event iceandfire:firedragon.adult.idle

[08:44:55] [Client thread/WARN]: File minecraft:sounds/firedragon_adult_idle_3.ogg does not exist, cannot add it to event iceandfire:firedragon.adult.idle

[08:44:55] [Client thread/WARN]: File minecraft:sounds/firedragon_adult_hurt_0.ogg does not exist, cannot add it to event iceandfire:firedragon.adult.hurt

[08:44:55] [Client thread/WARN]: File minecraft:sounds/firedragon_adult_hurt_1.ogg does not exist, cannot add it to event iceandfire:firedragon.adult.hurt

[08:44:55] [Client thread/WARN]: File minecraft:sounds/firedragon_adult_hurt_2.ogg does not exist, cannot add it to event iceandfire:firedragon.adult.hurt

[08:44:55] [Client thread/WARN]: File minecraft:sounds/firedragon_adult_hurt_0.ogg does not exist, cannot add it to event iceandfire:firedragon.adult.death

[08:44:55] [Client thread/WARN]: File minecraft:sounds/firedragon_adult_hurt_1.ogg does not exist, cannot add it to event iceandfire:firedragon.adult.death

[08:44:55] [Client thread/WARN]: File minecraft:sounds/firedragon_adult_hurt_2.ogg does not exist, cannot add it to event iceandfire:firedragon.adult.death

[08:44:55] [Client thread/WARN]: File minecraft:sounds/firedragon_adult_roar_0.ogg does not exist, cannot add it to event iceandfire:firedragon.adult.roar

[08:44:55] [Client thread/WARN]: File minecraft:sounds/firedragon_adult_roar_1.ogg does not exist, cannot add it to event iceandfire:firedragon.adult.roar

[08:44:55] [Client thread/WARN]: File minecraft:sounds/egg_hatch.ogg does not exist, cannot add it to event iceandfire:dragonegg.hatch

[08:44:55] [Client thread/INFO]: SoundSystem shutting down...

[08:44:55] [Client thread/WARN]: Author: Paul Lamb, www.paulscode.com

[08:44:55] [sound Library Loader/INFO]: Starting up SoundSystem...

[08:44:55] [Thread-10/INFO]: Initializing LWJGL OpenAL

[08:44:55] [Thread-10/INFO]: (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)

[08:44:55] [Thread-10/INFO]: OpenAL initialized.

[08:44:56] [sound Library Loader/INFO]: Sound engine started

[08:45:02] [Client thread/INFO] [FML]: Max texture size: 8192

[08:45:03] [Client thread/INFO]: Created: 1024x512 textures-atlas

[08:45:05] [Client thread/ERROR] [FML]: Exception loading model for variant iceandfire:dragonarmor_iron#inventory for item "iceandfire:dragonarmor_iron", normal location exception:

net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model iceandfire:item/dragonarmor_iron with loader VanillaLoader.INSTANCE, skipping

at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:134) ~[ModelLoaderRegistry.class:?]

at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:298) ~[ModelLoader.class:?]

at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:169) ~[ModelBakery.class:?]

at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:128) ~[ModelLoader.class:?]

at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?]

at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:130) [simpleReloadableResourceManager.class:?]

at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:111) [simpleReloadableResourceManager.class:?]

at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:792) [Minecraft.class:?]

at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:323) [FMLClientHandler.class:?]

at net.minecraft.client.Minecraft.startGame(Minecraft.java:554) [Minecraft.class:?]

at net.minecraft.client.Minecraft.run(Minecraft.java:381) [Minecraft.class:?]

at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?]

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_71]

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_71]

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_71]

at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_71]

at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]

at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_71]

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_71]

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_71]

at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_71]

at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?]

at GradleStart.main(GradleStart.java:26) [start/:?]

Caused by: java.io.FileNotFoundException: iceandfire:models/item/dragonarmor_iron.json

at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:68) ~[FallbackResourceManager.class:?]

at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:64) ~[simpleReloadableResourceManager.class:?]

at net.minecraft.client.renderer.block.model.ModelBakery.loadModel(ModelBakery.java:310) ~[ModelBakery.class:?]

at net.minecraftforge.client.model.ModelLoader.access$1100(ModelLoader.java:99) ~[ModelLoader.class:?]

at net.minecraftforge.client.model.ModelLoader$VanillaLoader.loadModel(ModelLoader.java:844) ~[ModelLoader$VanillaLoader.class:?]

at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:130) ~[ModelLoaderRegistry.class:?]

... 23 more

[08:45:05] [Client thread/ERROR] [FML]: Exception loading model for variant iceandfire:dragonarmor_iron#inventory for item "iceandfire:dragonarmor_iron", blockstate location exception:

net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model iceandfire:dragonarmor_iron#inventory with loader VariantLoader.INSTANCE, skipping

at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:134) ~[ModelLoaderRegistry.class:?]

at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:306) ~[ModelLoader.class:?]

at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:169) ~[ModelBakery.class:?]

at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:128) ~[ModelLoader.class:?]

at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?]

at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:130) [simpleReloadableResourceManager.class:?]

at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:111) [simpleReloadableResourceManager.class:?]

at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:792) [Minecraft.class:?]

at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:323) [FMLClientHandler.class:?]

at net.minecraft.client.Minecraft.startGame(Minecraft.java:554) [Minecraft.class:?]

at net.minecraft.client.Minecraft.run(Minecraft.java:381) [Minecraft.class:?]

at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?]

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_71]

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_71]

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_71]

at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_71]

at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]

at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_71]

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_71]

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_71]

at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_71]

at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?]

at GradleStart.main(GradleStart.java:26) [start/:?]

Caused by: net.minecraft.client.renderer.block.model.ModelBlockDefinition$MissingVariantException

at net.minecraft.client.renderer.block.model.ModelBlockDefinition.getVariant(ModelBlockDefinition.java:75) ~[ModelBlockDefinition.class:?]

at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1159) ~[ModelLoader$VariantLoader.class:?]

at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:130) ~[ModelLoaderRegistry.class:?]

... 23 more

[08:45:05] [Client thread/ERROR] [FML]: Exception loading model for variant iceandfire:dragon_skull#inventory for item "iceandfire:dragon_skull", normal location exception:

net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model iceandfire:item/dragon_skull with loader VanillaLoader.INSTANCE, skipping

at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:134) ~[ModelLoaderRegistry.class:?]

at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:298) ~[ModelLoader.class:?]

at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:169) ~[ModelBakery.class:?]

at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:128) ~[ModelLoader.class:?]

at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?]

at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:130) [simpleReloadableResourceManager.class:?]

at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:111) [simpleReloadableResourceManager.class:?]

at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:792) [Minecraft.class:?]

at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:323) [FMLClientHandler.class:?]

at net.minecraft.client.Minecraft.startGame(Minecraft.java:554) [Minecraft.class:?]

at net.minecraft.client.Minecraft.run(Minecraft.java:381) [Minecraft.class:?]

at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?]

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_71]

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_71]

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_71]

at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_71]

at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]

at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_71]

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_71]

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_71]

at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_71]

at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?]

at GradleStart.main(GradleStart.java:26) [start/:?]

Caused by: java.io.FileNotFoundException: iceandfire:models/item/dragon_skull.json

at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:68) ~[FallbackResourceManager.class:?]

at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:64) ~[simpleReloadableResourceManager.class:?]

at net.minecraft.client.renderer.block.model.ModelBakery.loadModel(ModelBakery.java:310) ~[ModelBakery.class:?]

at net.minecraftforge.client.model.ModelLoader.access$1100(ModelLoader.java:99) ~[ModelLoader.class:?]

at net.minecraftforge.client.model.ModelLoader$VanillaLoader.loadModel(ModelLoader.java:844) ~[ModelLoader$VanillaLoader.class:?]

at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:130) ~[ModelLoaderRegistry.class:?]

... 23 more

[08:45:05] [Client thread/ERROR] [FML]: Exception loading model for variant iceandfire:dragon_skull#inventory for item "iceandfire:dragon_skull", blockstate location exception:

net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model iceandfire:dragon_skull#inventory with loader VariantLoader.INSTANCE, skipping

at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:134) ~[ModelLoaderRegistry.class:?]

at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:306) ~[ModelLoader.class:?]

at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:169) ~[ModelBakery.class:?]

at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:128) ~[ModelLoader.class:?]

at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?]

at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:130) [simpleReloadableResourceManager.class:?]

at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:111) [simpleReloadableResourceManager.class:?]

at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:792) [Minecraft.class:?]

at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:323) [FMLClientHandler.class:?]

at net.minecraft.client.Minecraft.startGame(Minecraft.java:554) [Minecraft.class:?]

at net.minecraft.client.Minecraft.run(Minecraft.java:381) [Minecraft.class:?]

at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?]

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_71]

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_71]

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_71]

at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_71]

at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]

at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_71]

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_71]

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_71]

at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_71]

at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?]

at GradleStart.main(GradleStart.java:26) [start/:?]

Caused by: net.minecraft.client.renderer.block.model.ModelBlockDefinition$MissingVariantException

at net.minecraft.client.renderer.block.model.ModelBlockDefinition.getVariant(ModelBlockDefinition.java:75) ~[ModelBlockDefinition.class:?]

at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1159) ~[ModelLoader$VariantLoader.class:?]

at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:130) ~[ModelLoaderRegistry.class:?]

... 23 more

[08:45:06] [Realms Notification Availability checker #1/INFO]: Could not authorize you against Realms server: Invalid session id

[08:45:09] [Client thread/INFO]: Deleting level New World

[08:45:09] [Client thread/INFO]: Attempt 1...

[08:45:12] [Client thread/INFO]: Deleting level New World-

[08:45:12] [Client thread/INFO]: Attempt 1...

[08:45:19] [server thread/INFO]: Starting integrated minecraft server version 1.9

[08:45:19] [server thread/INFO]: Generating keypair

[08:45:19] [server thread/INFO] [FML]: Injecting existing block and item data into this server instance

[08:45:19] [server thread/INFO] [FML]: Applying holder lookups

[08:45:19] [server thread/INFO] [FML]: Holder lookups applied

[08:45:19] [server thread/INFO] [FML]: Loading dimension 0 (New World) (net.minecraft.server.integrated.IntegratedServer@2f713942)

[08:45:21] [server thread/INFO] [FML]: Loading dimension 1 (New World) (net.minecraft.server.integrated.IntegratedServer@2f713942)

[08:45:21] [server thread/INFO] [FML]: Loading dimension -1 (New World) (net.minecraft.server.integrated.IntegratedServer@2f713942)

[08:45:21] [server thread/INFO]: Preparing start region for level 0

[08:45:22] [server thread/INFO]: Preparing spawn area: 5%

[08:45:23] [server thread/INFO]: Preparing spawn area: 9%

[08:45:24] [server thread/INFO]: Preparing spawn area: 13%

[08:45:25] [server thread/INFO]: Preparing spawn area: 17%

[08:45:26] [server thread/INFO]: Preparing spawn area: 22%

[08:45:27] [server thread/INFO]: Preparing spawn area: 28%

[08:45:28] [server thread/INFO]: Preparing spawn area: 34%

[08:45:29] [server thread/INFO]: Preparing spawn area: 39%

[08:45:30] [server thread/INFO]: Preparing spawn area: 46%

[08:45:31] [server thread/INFO]: Preparing spawn area: 52%

[08:45:32] [server thread/INFO]: Preparing spawn area: 58%

[08:45:33] [server thread/INFO]: Preparing spawn area: 67%

[08:45:34] [server thread/INFO]: Preparing spawn area: 75%

[08:45:35] [server thread/INFO]: Preparing spawn area: 84%

[08:45:36] [server thread/INFO]: Preparing spawn area: 93%

[08:45:37] [server thread/INFO]: Preparing spawn area: 99%

[08:45:39] [server thread/INFO]: Changing view distance to 6, from 10

[08:45:41] [Netty Local Client IO #0/INFO] [FML]: Server protocol version 2

[08:45:41] [Netty Server IO #1/INFO] [FML]: Client protocol version 2

[08:45:41] [Netty Server IO #1/INFO] [FML]: Client attempting to join with 5 mods : [email protected],[email protected],[email protected],[email protected],[email protected]

[08:45:41] [Netty Local Client IO #0/INFO] [FML]: [Netty Local Client IO #0] Client side modded connection established

[08:45:41] [server thread/INFO] [FML]: [server thread] Server side modded connection established

[08:45:41] [server thread/INFO]: Player58[local:E:d0f16fba] logged in with entity id 456 at (-230.5, 71.0, 248.5)

[08:45:41] [server thread/INFO]: Player58 joined the game

[08:45:44] [pool-2-thread-1/WARN]: Couldn't look up profile properties for com.mojang.authlib.GameProfile@56fd091b[id=4ade729a-2e2a-392f-ad93-d7e7b1d9c4ee,name=Player58,properties={},legacy=false]

com.mojang.authlib.exceptions.AuthenticationException: The client has sent too many requests within a certain amount of time

at com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService.makeRequest(YggdrasilAuthenticationService.java:65) ~[YggdrasilAuthenticationService.class:?]

at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fillGameProfile(YggdrasilMinecraftSessionService.java:175) [YggdrasilMinecraftSessionService.class:?]

at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService$1.load(YggdrasilMinecraftSessionService.java:59) [YggdrasilMinecraftSessionService$1.class:?]

at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService$1.load(YggdrasilMinecraftSessionService.java:56) [YggdrasilMinecraftSessionService$1.class:?]

at com.google.common.cache.LocalCache$LoadingValueReference.loadFuture(LocalCache.java:3524) [guava-17.0.jar:?]

at com.google.common.cache.LocalCache$Segment.loadSync(LocalCache.java:2317) [guava-17.0.jar:?]

at com.google.common.cache.LocalCache$Segment.lockedGetOrLoad(LocalCache.java:2280) [guava-17.0.jar:?]

at com.google.common.cache.LocalCache$Segment.get(LocalCache.java:2195) [guava-17.0.jar:?]

at com.google.common.cache.LocalCache.get(LocalCache.java:3934) [guava-17.0.jar:?]

at com.google.common.cache.LocalCache.getOrLoad(LocalCache.java:3938) [guava-17.0.jar:?]

at com.google.common.cache.LocalCache$LocalLoadingCache.get(LocalCache.java:4821) [guava-17.0.jar:?]

at com.google.common.cache.LocalCache$LocalLoadingCache.getUnchecked(LocalCache.java:4827) [guava-17.0.jar:?]

at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fillProfileProperties(YggdrasilMinecraftSessionService.java:165) [YggdrasilMinecraftSessionService.class:?]

at net.minecraft.client.Minecraft.getProfileProperties(Minecraft.java:3038) [Minecraft.class:?]

at net.minecraft.client.resources.SkinManager$3.run(SkinManager.java:130) [skinManager$3.class:?]

at java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source) [?:1.8.0_71]

at java.util.concurrent.FutureTask.run(Unknown Source) [?:1.8.0_71]

at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source) [?:1.8.0_71]

at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source) [?:1.8.0_71]

at java.lang.Thread.run(Unknown Source) [?:1.8.0_71]

[08:45:45] [server thread/WARN]: Can't keep up! Did the system time change, or is the server overloaded? Running 4694ms behind, skipping 93 tick(s)

[08:45:49] [server thread/INFO]: Player58 has just earned the achievement [Taking Inventory]

[08:45:49] [Client thread/INFO]: [CHAT] Player58 has just earned the achievement [Taking Inventory]

[08:45:57] [server thread/INFO] [FML]: MinecraftForge v12.16.0.1854 Initialized

[08:45:57] [Netty Local Client IO #0/ERROR] [FML]: EntitySpawnHandler exception

java.lang.NullPointerException

at net.minecraftforge.fml.common.network.internal.EntitySpawnHandler.channelRead0(EntitySpawnHandler.java:34) ~[EntitySpawnHandler.class:?]

at net.minecraftforge.fml.common.network.internal.EntitySpawnHandler.channelRead0(EntitySpawnHandler.java:29) ~[EntitySpawnHandler.class:?]

at io.netty.channel.SimpleChannelInboundHandler.channelRead(SimpleChannelInboundHandler.java:105) ~[simpleChannelInboundHandler.class:4.0.23.Final]

at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:333) [AbstractChannelHandlerContext.class:4.0.23.Final]

at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:319) [AbstractChannelHandlerContext.class:4.0.23.Final]

at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:103) [MessageToMessageDecoder.class:4.0.23.Final]

at io.netty.handler.codec.MessageToMessageCodec.channelRead(MessageToMessageCodec.java:111) [MessageToMessageCodec.class:4.0.23.Final]

at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:333) [AbstractChannelHandlerContext.class:4.0.23.Final]

at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:319) [AbstractChannelHandlerContext.class:4.0.23.Final]

at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:787) [DefaultChannelPipeline.class:4.0.23.Final]

at io.netty.channel.embedded.EmbeddedChannel.writeInbound(EmbeddedChannel.java:169) [EmbeddedChannel.class:4.0.23.Final]

at net.minecraftforge.fml.common.network.internal.FMLProxyPacket.processPacket(FMLProxyPacket.java:90) [FMLProxyPacket.class:?]

at net.minecraft.network.NetworkManager.channelRead0(NetworkManager.java:155) [NetworkManager.class:?]

at net.minecraft.network.NetworkManager.channelRead0(NetworkManager.java:50) [NetworkManager.class:?]

at io.netty.channel.SimpleChannelInboundHandler.channelRead(SimpleChannelInboundHandler.java:105) [simpleChannelInboundHandler.class:4.0.23.Final]

at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:333) [AbstractChannelHandlerContext.class:4.0.23.Final]

at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:319) [AbstractChannelHandlerContext.class:4.0.23.Final]

at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher.handleClientSideCustomPacket(NetworkDispatcher.java:390) [NetworkDispatcher.class:?]

at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher.channelRead0(NetworkDispatcher.java:256) [NetworkDispatcher.class:?]

at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher.channelRead0(NetworkDispatcher.java:53) [NetworkDispatcher.class:?]

at io.netty.channel.SimpleChannelInboundHandler.channelRead(SimpleChannelInboundHandler.java:105) [simpleChannelInboundHandler.class:4.0.23.Final]

at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:333) [AbstractChannelHandlerContext.class:4.0.23.Final]

at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:319) [AbstractChannelHandlerContext.class:4.0.23.Final]

at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:787) [DefaultChannelPipeline.class:4.0.23.Final]

at io.netty.channel.local.LocalChannel.finishPeerRead(LocalChannel.java:326) [LocalChannel.class:4.0.23.Final]

at io.netty.channel.local.LocalChannel.access$400(LocalChannel.java:45) [LocalChannel.class:4.0.23.Final]

at io.netty.channel.local.LocalChannel$5.run(LocalChannel.java:312) [LocalChannel$5.class:4.0.23.Final]

at io.netty.channel.local.LocalEventLoop.run(LocalEventLoop.java:33) [LocalEventLoop.class:4.0.23.Final]

at io.netty.util.concurrent.SingleThreadEventExecutor$2.run(SingleThreadEventExecutor.java:116) [singleThreadEventExecutor$2.class:4.0.23.Final]

at java.lang.Thread.run(Unknown Source) [?:1.8.0_71]

[08:45:57] [Netty Local Client IO #0/ERROR] [FML]: OpenGuiHandler exception

java.lang.NullPointerException

at net.minecraftforge.fml.common.network.internal.EntitySpawnHandler.channelRead0(EntitySpawnHandler.java:34) ~[EntitySpawnHandler.class:?]

at net.minecraftforge.fml.common.network.internal.EntitySpawnHandler.channelRead0(EntitySpawnHandler.java:29) ~[EntitySpawnHandler.class:?]

at io.netty.channel.SimpleChannelInboundHandler.channelRead(SimpleChannelInboundHandler.java:105) ~[simpleChannelInboundHandler.class:4.0.23.Final]

at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:333) [AbstractChannelHandlerContext.class:4.0.23.Final]

at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:319) [AbstractChannelHandlerContext.class:4.0.23.Final]

at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:103) [MessageToMessageDecoder.class:4.0.23.Final]

at io.netty.handler.codec.MessageToMessageCodec.channelRead(MessageToMessageCodec.java:111) [MessageToMessageCodec.class:4.0.23.Final]

at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:333) [AbstractChannelHandlerContext.class:4.0.23.Final]

at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:319) [AbstractChannelHandlerContext.class:4.0.23.Final]

at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:787) [DefaultChannelPipeline.class:4.0.23.Final]

at io.netty.channel.embedded.EmbeddedChannel.writeInbound(EmbeddedChannel.java:169) [EmbeddedChannel.class:4.0.23.Final]

at net.minecraftforge.fml.common.network.internal.FMLProxyPacket.processPacket(FMLProxyPacket.java:90) [FMLProxyPacket.class:?]

at net.minecraft.network.NetworkManager.channelRead0(NetworkManager.java:155) [NetworkManager.class:?]

at net.minecraft.network.NetworkManager.channelRead0(NetworkManager.java:50) [NetworkManager.class:?]

at io.netty.channel.SimpleChannelInboundHandler.channelRead(SimpleChannelInboundHandler.java:105) [simpleChannelInboundHandler.class:4.0.23.Final]

at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:333) [AbstractChannelHandlerContext.class:4.0.23.Final]

at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:319) [AbstractChannelHandlerContext.class:4.0.23.Final]

at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher.handleClientSideCustomPacket(NetworkDispatcher.java:390) [NetworkDispatcher.class:?]

at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher.channelRead0(NetworkDispatcher.java:256) [NetworkDispatcher.class:?]

at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher.channelRead0(NetworkDispatcher.java:53) [NetworkDispatcher.class:?]

at io.netty.channel.SimpleChannelInboundHandler.channelRead(SimpleChannelInboundHandler.java:105) [simpleChannelInboundHandler.class:4.0.23.Final]

at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:333) [AbstractChannelHandlerContext.class:4.0.23.Final]

at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:319) [AbstractChannelHandlerContext.class:4.0.23.Final]

at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:787) [DefaultChannelPipeline.class:4.0.23.Final]

at io.netty.channel.local.LocalChannel.finishPeerRead(LocalChannel.java:326) [LocalChannel.class:4.0.23.Final]

at io.netty.channel.local.LocalChannel.access$400(LocalChannel.java:45) [LocalChannel.class:4.0.23.Final]

at io.netty.channel.local.LocalChannel$5.run(LocalChannel.java:312) [LocalChannel$5.class:4.0.23.Final]

at io.netty.channel.local.LocalEventLoop.run(LocalEventLoop.java:33) [LocalEventLoop.class:4.0.23.Final]

at io.netty.util.concurrent.SingleThreadEventExecutor$2.run(SingleThreadEventExecutor.java:116) [singleThreadEventExecutor$2.class:4.0.23.Final]

at java.lang.Thread.run(Unknown Source) [?:1.8.0_71]

[08:45:57] [Netty Local Client IO #0/ERROR] [FML]: HandshakeCompletionHandler exception

java.lang.NullPointerException

at net.minecraftforge.fml.common.network.internal.EntitySpawnHandler.channelRead0(EntitySpawnHandler.java:34) ~[EntitySpawnHandler.class:?]

at net.minecraftforge.fml.common.network.internal.EntitySpawnHandler.channelRead0(EntitySpawnHandler.java:29) ~[EntitySpawnHandler.class:?]

at io.netty.channel.SimpleChannelInboundHandler.channelRead(SimpleChannelInboundHandler.java:105) ~[simpleChannelInboundHandler.class:4.0.23.Final]

at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:333) [AbstractChannelHandlerContext.class:4.0.23.Final]

at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:319) [AbstractChannelHandlerContext.class:4.0.23.Final]

at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:103) [MessageToMessageDecoder.class:4.0.23.Final]

at io.netty.handler.codec.MessageToMessageCodec.channelRead(MessageToMessageCodec.java:111) [MessageToMessageCodec.class:4.0.23.Final]

at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:333) [AbstractChannelHandlerContext.class:4.0.23.Final]

at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:319) [AbstractChannelHandlerContext.class:4.0.23.Final]

at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:787) [DefaultChannelPipeline.class:4.0.23.Final]

at io.netty.channel.embedded.EmbeddedChannel.writeInbound(EmbeddedChannel.java:169) [EmbeddedChannel.class:4.0.23.Final]

at net.minecraftforge.fml.common.network.internal.FMLProxyPacket.processPacket(FMLProxyPacket.java:90) [FMLProxyPacket.class:?]

at net.minecraft.network.NetworkManager.channelRead0(NetworkManager.java:155) [NetworkManager.class:?]

at net.minecraft.network.NetworkManager.channelRead0(NetworkManager.java:50) [NetworkManager.class:?]

at io.netty.channel.SimpleChannelInboundHandler.channelRead(SimpleChannelInboundHandler.java:105) [simpleChannelInboundHandler.class:4.0.23.Final]

at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:333) [AbstractChannelHandlerContext.class:4.0.23.Final]

at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:319) [AbstractChannelHandlerContext.class:4.0.23.Final]

at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher.handleClientSideCustomPacket(NetworkDispatcher.java:390) [NetworkDispatcher.class:?]

at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher.channelRead0(NetworkDispatcher.java:256) [NetworkDispatcher.class:?]

at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher.channelRead0(NetworkDispatcher.java:53) [NetworkDispatcher.class:?]

at io.netty.channel.SimpleChannelInboundHandler.channelRead(SimpleChannelInboundHandler.java:105) [simpleChannelInboundHandler.class:4.0.23.Final]

at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:333) [AbstractChannelHandlerContext.class:4.0.23.Final]

at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:319) [AbstractChannelHandlerContext.class:4.0.23.Final]

at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:787) [DefaultChannelPipeline.class:4.0.23.Final]

at io.netty.channel.local.LocalChannel.finishPeerRead(LocalChannel.java:326) [LocalChannel.class:4.0.23.Final]

at io.netty.channel.local.LocalChannel.access$400(LocalChannel.java:45) [LocalChannel.class:4.0.23.Final]

at io.netty.channel.local.LocalChannel$5.run(LocalChannel.java:312) [LocalChannel$5.class:4.0.23.Final]

at io.netty.channel.local.LocalEventLoop.run(LocalEventLoop.java:33) [LocalEventLoop.class:4.0.23.Final]

at io.netty.util.concurrent.SingleThreadEventExecutor$2.run(SingleThreadEventExecutor.java:116) [singleThreadEventExecutor$2.class:4.0.23.Final]

at java.lang.Thread.run(Unknown Source) [?:1.8.0_71]

[08:45:57] [Netty Local Client IO #0/ERROR] [FML]: There was a critical exception handling a packet on channel FML

java.lang.NullPointerException

at net.minecraftforge.fml.common.network.internal.EntitySpawnHandler.channelRead0(EntitySpawnHandler.java:34) ~[EntitySpawnHandler.class:?]

at net.minecraftforge.fml.common.network.internal.EntitySpawnHandler.channelRead0(EntitySpawnHandler.java:29) ~[EntitySpawnHandler.class:?]

at io.netty.channel.SimpleChannelInboundHandler.channelRead(SimpleChannelInboundHandler.java:105) ~[simpleChannelInboundHandler.class:4.0.23.Final]

at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:333) ~[AbstractChannelHandlerContext.class:4.0.23.Final]

at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:319) ~[AbstractChannelHandlerContext.class:4.0.23.Final]

at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:103) ~[MessageToMessageDecoder.class:4.0.23.Final]

at io.netty.handler.codec.MessageToMessageCodec.channelRead(MessageToMessageCodec.java:111) ~[MessageToMessageCodec.class:4.0.23.Final]

at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:333) ~[AbstractChannelHandlerContext.class:4.0.23.Final]

at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:319) ~[AbstractChannelHandlerContext.class:4.0.23.Final]

at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:787) ~[DefaultChannelPipeline.class:4.0.23.Final]

at io.netty.channel.embedded.EmbeddedChannel.writeInbound(EmbeddedChannel.java:169) ~[EmbeddedChannel.class:4.0.23.Final]

at net.minecraftforge.fml.common.network.internal.FMLProxyPacket.processPacket(FMLProxyPacket.java:90) [FMLProxyPacket.class:?]

at net.minecraft.network.NetworkManager.channelRead0(NetworkManager.java:155) [NetworkManager.class:?]

at net.minecraft.network.NetworkManager.channelRead0(NetworkManager.java:50) [NetworkManager.class:?]

at io.netty.channel.SimpleChannelInboundHandler.channelRead(SimpleChannelInboundHandler.java:105) [simpleChannelInboundHandler.class:4.0.23.Final]

at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:333) [AbstractChannelHandlerContext.class:4.0.23.Final]

at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:319) [AbstractChannelHandlerContext.class:4.0.23.Final]

at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher.handleClientSideCustomPacket(NetworkDispatcher.java:390) [NetworkDispatcher.class:?]

at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher.channelRead0(NetworkDispatcher.java:256) [NetworkDispatcher.class:?]

at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher.channelRead0(NetworkDispatcher.java:53) [NetworkDispatcher.class:?]

at io.netty.channel.SimpleChannelInboundHandler.channelRead(SimpleChannelInboundHandler.java:105) [simpleChannelInboundHandler.class:4.0.23.Final]

at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:333) [AbstractChannelHandlerContext.class:4.0.23.Final]

at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:319) [AbstractChannelHandlerContext.class:4.0.23.Final]

at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:787) [DefaultChannelPipeline.class:4.0.23.Final]

at io.netty.channel.local.LocalChannel.finishPeerRead(LocalChannel.java:326) [LocalChannel.class:4.0.23.Final]

at io.netty.channel.local.LocalChannel.access$400(LocalChannel.java:45) [LocalChannel.class:4.0.23.Final]

at io.netty.channel.local.LocalChannel$5.run(LocalChannel.java:312) [LocalChannel$5.class:4.0.23.Final]

at io.netty.channel.local.LocalEventLoop.run(LocalEventLoop.java:33) [LocalEventLoop.class:4.0.23.Final]

at io.netty.util.concurrent.SingleThreadEventExecutor$2.run(SingleThreadEventExecutor.java:116) [singleThreadEventExecutor$2.class:4.0.23.Final]

at java.lang.Thread.run(Unknown Source) [?:1.8.0_71]

[08:45:57] [server thread/INFO]: Player58 lost connection: TextComponent{text='Disconnected', siblings=[], style=Style{hasParent=false, color=null, bold=null, italic=null, underlined=null, obfuscated=null, clickEvent=null, hoverEvent=null, insertion=null}}

[08:45:57] [server thread/INFO]: Player58 left the game

[08:45:57] [server thread/INFO]: Stopping singleplayer server as player logged out

[08:45:57] [server thread/INFO]: Stopping server

[08:45:57] [server thread/INFO]: Saving players

[08:45:57] [server thread/INFO]: Saving worlds

[08:45:57] [server thread/INFO]: Saving chunks for level 'New World'/Overworld

[08:45:58] [server thread/INFO]: Saving chunks for level 'New World'/Nether

[08:45:58] [server thread/INFO]: Saving chunks for level 'New World'/The End

[08:45:58] [server thread/ERROR] [FML]: Exception caught during firing event net.minecraftforge.event.world.WorldEvent$Unload@359afabc:

java.lang.NullPointerException

at net.minecraftforge.common.ForgeChunkManager.unloadWorld(ForgeChunkManager.java:601) ~[ForgeChunkManager.class:?]

at net.minecraftforge.common.ForgeInternalHandler.onDimensionUnload(ForgeInternalHandler.java:76) ~[ForgeInternalHandler.class:?]

at net.minecraftforge.fml.common.eventhandler.ASMEventHandler_3_ForgeInternalHandler_onDimensionUnload_Unload.invoke(.dynamic) ~[?:?]

at net.minecraftforge.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:49) ~[ASMEventHandler.class:?]

at net.minecraftforge.fml.common.eventhandler.EventBus.post(EventBus.java:140) [EventBus.class:?]

at net.minecraft.server.MinecraftServer.stopServer(MinecraftServer.java:458) [MinecraftServer.class:?]

at net.minecraft.server.integrated.IntegratedServer.stopServer(IntegratedServer.java:368) [integratedServer.class:?]

at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:585) [MinecraftServer.class:?]

at java.lang.Thread.run(Unknown Source) [?:1.8.0_71]

[08:45:58] [server thread/ERROR] [FML]: Index: 1 Listeners:

[08:45:58] [server thread/ERROR] [FML]: 0: HIGHEST

[08:45:58] [server thread/ERROR] [FML]: 1: ASM: net.minecraftforge.common.ForgeInternalHandler@22726bc7 onDimensionUnload(Lnet/minecraftforge/event/world/WorldEvent$Unload;)V

[08:45:58] [server thread/ERROR]: Exception stopping the server

java.lang.NullPointerException

at net.minecraftforge.common.ForgeChunkManager.unloadWorld(ForgeChunkManager.java:601) ~[ForgeChunkManager.class:?]

at net.minecraftforge.common.ForgeInternalHandler.onDimensionUnload(ForgeInternalHandler.java:76) ~[ForgeInternalHandler.class:?]

at net.minecraftforge.fml.common.eventhandler.ASMEventHandler_3_ForgeInternalHandler_onDimensionUnload_Unload.invoke(.dynamic) ~[?:?]

at net.minecraftforge.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:49) ~[ASMEventHandler.class:?]

at net.minecraftforge.fml.common.eventhandler.EventBus.post(EventBus.java:140) ~[EventBus.class:?]

at net.minecraft.server.MinecraftServer.stopServer(MinecraftServer.java:458) ~[MinecraftServer.class:?]

at net.minecraft.server.integrated.IntegratedServer.stopServer(IntegratedServer.java:368) ~[integratedServer.class:?]

at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:585) [MinecraftServer.class:?]

at java.lang.Thread.run(Unknown Source) [?:1.8.0_71]

[08:45:58] [server thread/INFO] [FML]: Applying holder lookups

[08:45:58] [server thread/INFO] [FML]: Holder lookups applied

 

 

Posted

I'm not quite sure where it was, as I've moved on and updated forge, restarted computer, etc. Now I'm having a different issue, so i didn't think it was relevant. Plus it no longer triggers.

Join the conversation

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

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

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

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

×   Your previous content has been restored.   Clear editor

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

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Hello, so I'm trying to play with my friends on a modded server, I took a base modpack and then added a few mods, when they try to join I'm seeing them on the world and then they disconnect. Here's a piece of the log from a friend :   [28Apr2025 19:57:57.985] [Render thread/INFO] [placebo/]: Starting sync for affixes [28Apr2025 19:57:58.010] [Render thread/INFO] [Apotheosis : Adventure/]: Registered 179 affixes. [28Apr2025 19:57:58.016] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:uncommon for category curios:charmRequired: 3; Provided: 2 [28Apr2025 19:57:58.016] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:uncommon for category curios:braceletRequired: 3; Provided: 2 [28Apr2025 19:57:58.016] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:uncommon for category curios:scrollRequired: 3; Provided: 2 [28Apr2025 19:57:58.016] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:uncommon for category curios:an_focusRequired: 3; Provided: 2 [28Apr2025 19:57:58.016] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:uncommon for category curios:necklaceRequired: 3; Provided: 2 [28Apr2025 19:57:58.016] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:uncommon for category curios:ringRequired: 3; Provided: 2 [28Apr2025 19:57:58.016] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:uncommon for category curios:spellstoneRequired: 3; Provided: 2 [28Apr2025 19:57:58.016] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:uncommon for category curios:talismanRequired: 3; Provided: 2 [28Apr2025 19:57:58.016] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:uncommon for category curios:beltRequired: 3; Provided: 2 [28Apr2025 19:57:58.017] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:rare for category curios:charmRequired: 3; Provided: 2 [28Apr2025 19:57:58.017] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:rare for category curios:braceletRequired: 3; Provided: 2 [28Apr2025 19:57:58.017] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:rare for category curios:scrollRequired: 3; Provided: 2 [28Apr2025 19:57:58.017] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:rare for category curios:an_focusRequired: 3; Provided: 2 [28Apr2025 19:57:58.017] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:rare for category curios:necklaceRequired: 3; Provided: 2 [28Apr2025 19:57:58.017] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:rare for category curios:ringRequired: 3; Provided: 2 [28Apr2025 19:57:58.017] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:rare for category curios:spellstoneRequired: 3; Provided: 2 [28Apr2025 19:57:58.017] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:rare for category curios:talismanRequired: 3; Provided: 2 [28Apr2025 19:57:58.017] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:rare for category curios:beltRequired: 3; Provided: 2 [28Apr2025 19:57:58.019] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:epic for category curios:charmRequired: 4; Provided: 2 [28Apr2025 19:57:58.019] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:epic for category curios:braceletRequired: 4; Provided: 2 [28Apr2025 19:57:58.019] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:epic for category curios:scrollRequired: 4; Provided: 2 [28Apr2025 19:57:58.019] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:epic for category curios:an_focusRequired: 4; Provided: 2 [28Apr2025 19:57:58.019] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:epic for category curios:necklaceRequired: 4; Provided: 2 [28Apr2025 19:57:58.019] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:epic for category curios:ringRequired: 4; Provided: 2 [28Apr2025 19:57:58.019] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:epic for category curios:spellstoneRequired: 4; Provided: 2 [28Apr2025 19:57:58.019] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:epic for category curios:talismanRequired: 4; Provided: 2 [28Apr2025 19:57:58.019] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:epic for category curios:beltRequired: 4; Provided: 2 [28Apr2025 19:57:58.024] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:mythic for category curios:charmRequired: 4; Provided: 2 [28Apr2025 19:57:58.025] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:mythic for category curios:braceletRequired: 4; Provided: 2 [28Apr2025 19:57:58.025] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:mythic for category curios:scrollRequired: 4; Provided: 2 [28Apr2025 19:57:58.025] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:mythic for category curios:an_focusRequired: 4; Provided: 2 [28Apr2025 19:57:58.025] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:mythic for category curios:necklaceRequired: 4; Provided: 2 [28Apr2025 19:57:58.025] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:mythic for category curios:ringRequired: 4; Provided: 2 [28Apr2025 19:57:58.025] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:mythic for category curios:spellstoneRequired: 4; Provided: 2 [28Apr2025 19:57:58.025] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:mythic for category curios:talismanRequired: 4; Provided: 2 [28Apr2025 19:57:58.025] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:mythic for category curios:beltRequired: 4; Provided: 2 [28Apr2025 19:57:58.026] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category helmetRequired: 5; Provided: 4 [28Apr2025 19:57:58.026] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category chestplateRequired: 5; Provided: 4 [28Apr2025 19:57:58.027] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category leggingsRequired: 5; Provided: 4 [28Apr2025 19:57:58.027] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category bootsRequired: 5; Provided: 4 [28Apr2025 19:57:58.027] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category shieldRequired: 5; Provided: 4 [28Apr2025 19:57:58.027] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:charmRequired: 5; Provided: 2 [28Apr2025 19:57:58.027] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:braceletRequired: 5; Provided: 2 [28Apr2025 19:57:58.027] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:scrollRequired: 5; Provided: 2 [28Apr2025 19:57:58.027] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:an_focusRequired: 5; Provided: 2 [28Apr2025 19:57:58.027] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:necklaceRequired: 5; Provided: 2 [28Apr2025 19:57:58.027] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:ringRequired: 5; Provided: 2 [28Apr2025 19:57:58.027] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:spellstoneRequired: 5; Provided: 2 [28Apr2025 19:57:58.027] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:talismanRequired: 5; Provided: 2 [28Apr2025 19:57:58.027] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:beltRequired: 5; Provided: 2 [28Apr2025 19:57:58.028] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:backRequired: 5; Provided: 4 [28Apr2025 19:57:58.028] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:feetRequired: 5; Provided: 4 [28Apr2025 19:57:58.028] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:headRequired: 5; Provided: 4 [28Apr2025 19:57:58.028] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:bodyRequired: 5; Provided: 4 [28Apr2025 19:57:58.028] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:handsRequired: 5; Provided: 4 [28Apr2025 19:57:58.028] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category bowRequired: 5; Provided: 4 [28Apr2025 19:57:58.028] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category crossbowRequired: 5; Provided: 4 [28Apr2025 19:57:58.028] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category heavy_weaponRequired: 5; Provided: 3 [28Apr2025 19:57:58.029] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category shieldRequired: 5; Provided: 4 [28Apr2025 19:57:58.029] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:charmRequired: 5; Provided: 2 [28Apr2025 19:57:58.029] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:braceletRequired: 5; Provided: 2 [28Apr2025 19:57:58.029] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:scrollRequired: 5; Provided: 2 [28Apr2025 19:57:58.029] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:an_focusRequired: 5; Provided: 2 [28Apr2025 19:57:58.029] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:necklaceRequired: 5; Provided: 2 [28Apr2025 19:57:58.029] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:ringRequired: 5; Provided: 2 [28Apr2025 19:57:58.029] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:spellstoneRequired: 5; Provided: 2 [28Apr2025 19:57:58.029] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:talismanRequired: 5; Provided: 2 [28Apr2025 19:57:58.029] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:beltRequired: 5; Provided: 2 [28Apr2025 19:57:58.029] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:backRequired: 5; Provided: 4 [28Apr2025 19:57:58.029] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:feetRequired: 5; Provided: 4 [28Apr2025 19:57:58.030] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:headRequired: 5; Provided: 4 [28Apr2025 19:57:58.030] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:bodyRequired: 5; Provided: 4 [28Apr2025 19:57:58.030] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:handsRequired: 5; Provided: 4 [28Apr2025 19:57:58.030] [Render thread/INFO] [placebo/]: Starting sync for gems [28Apr2025 19:57:58.056] [Render thread/INFO] [Apotheosis : Adventure/]: Registered 57 gems. [28Apr2025 19:57:58.194] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting net/minecraft/world/phys/HitResult$Type [28Apr2025 19:58:00.099] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting io/socol/betterthirdperson/api/TickPhase [28Apr2025 19:58:00.385] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting io/wispforest/accessories/api/EquipmentChecking [28Apr2025 19:58:00.416] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting net/mehvahdjukaar/supplementaries/client/cannon/ShootingMode [28Apr2025 19:58:00.508] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting net/minecraft/world/scores/Team$CollisionRule [28Apr2025 19:58:00.553] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting com/corosus/watut/PlayerStatus$PlayerChatState [28Apr2025 19:58:00.810] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting tschipp/carryon/common/carry/CarryOnData$CarryType [28Apr2025 19:58:00.931] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting org/violetmoon/quark/api/event/UsageTickerEvent$Pass [28Apr2025 19:58:00.946] [Render thread/INFO] [ChunkBuilder/]: Stopping worker threads [28Apr2025 19:58:00.998] [Render thread/INFO] [ChunkBuilder/]: Started 10 worker threads [28Apr2025 19:58:01.170] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting me/jellysquid/mods/sodium/client/render/chunk/shader/ChunkFogMode [28Apr2025 19:58:01.176] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting me/jellysquid/mods/sodium/client/gl/shader/ShaderType [28Apr2025 19:58:01.439] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting me/jellysquid/mods/sodium/client/render/chunk/shader/ChunkShaderTextureSlot [28Apr2025 19:58:02.263] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting de/odysseus/ithaka/digraph/util/fas/FeedbackArcSetPolicy [28Apr2025 19:58:02.274] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting net/irisshaders/iris/shaderpack/properties/ParticleRenderingSettings [28Apr2025 19:58:02.446] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting glitchcore/event/client/LevelRenderEvent$Stage [28Apr2025 19:58:02.449] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting twilightforest/client/EffectRenders [28Apr2025 19:58:02.458] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting net/irisshaders/iris/shaderpack/properties/CloudSetting [28Apr2025 19:58:02.564] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting dev/kosmx/playerAnim/api/firstPerson/FirstPersonMode [28Apr2025 19:58:02.576] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting net/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection [28Apr2025 19:58:02.615] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting traben/entity_model_features/models/animation/EMFAttachments [28Apr2025 19:58:02.628] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting dev/tr7zw/skinlayers/versionless/util/Direction [28Apr2025 19:58:02.629] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting dev/tr7zw/skinlayers/versionless/util/Direction$Axis [28Apr2025 19:58:02.661] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting traben/entity_texture_features/config/screens/skin/ETFConfigScreenSkinTool$NoseType [28Apr2025 19:58:02.716] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting net/blay09/mods/balm/api/event/client/GuiDrawEvent$Element [28Apr2025 19:58:02.856] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Reloading radar icon resources... [28Apr2025 19:58:02.875] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for aether:cockatrice [28Apr2025 19:58:02.875] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for aether:evil_whirlwind [28Apr2025 19:58:02.876] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for aether:mimic [28Apr2025 19:58:02.876] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for aether:moa [28Apr2025 19:58:02.876] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for aether:whirlwind [28Apr2025 19:58:02.877] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:alligator_snapping_turtle [28Apr2025 19:58:02.877] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:anaconda [28Apr2025 19:58:02.877] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:anaconda_part [28Apr2025 19:58:02.877] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:anteater [28Apr2025 19:58:02.877] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:bald_eagle [28Apr2025 19:58:02.878] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:banana_slug [28Apr2025 19:58:02.878] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:bison [28Apr2025 19:58:02.878] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:blobfish [28Apr2025 19:58:02.878] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:blue_jay [28Apr2025 19:58:02.878] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:bone_serpent [28Apr2025 19:58:02.878] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:bone_serpent_part [28Apr2025 19:58:02.878] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:bunfungus [28Apr2025 19:58:02.878] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:cachalot_whale [28Apr2025 19:58:02.878] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:caiman [28Apr2025 19:58:02.879] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:capuchin_monkey [28Apr2025 19:58:02.879] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:catfish [28Apr2025 19:58:02.879] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:centipede_body [28Apr2025 19:58:02.879] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:centipede_head [28Apr2025 19:58:02.879] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:centipede_tail [28Apr2025 19:58:02.879] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:cockroach [28Apr2025 19:58:02.879] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:comb_jelly [28Apr2025 19:58:02.879] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:cosmaw [28Apr2025 19:58:02.879] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:cosmic_cod [28Apr2025 19:58:02.879] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:crimson_mosquito [28Apr2025 19:58:02.879] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:crocodile [28Apr2025 19:58:02.879] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:crow [28Apr2025 19:58:02.879] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:devils_hole_pupfish [28Apr2025 19:58:02.879] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:dropbear [28Apr2025 19:58:02.880] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:elephant [28Apr2025 19:58:02.880] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:emu [28Apr2025 19:58:02.880] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:endergrade [28Apr2025 19:58:02.880] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:enderiophage [28Apr2025 19:58:02.880] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:farseer [28Apr2025 19:58:02.880] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:flutter [28Apr2025 19:58:02.880] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:fly [28Apr2025 19:58:02.880] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:flying_fish [28Apr2025 19:58:02.880] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:frilled_shark [28Apr2025 19:58:02.880] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:froststalker [28Apr2025 19:58:02.880] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:gazelle [28Apr2025 19:58:02.880] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:gelada_monkey [28Apr2025 19:58:02.880] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:giant_squid [28Apr2025 19:58:02.880] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:gorilla [28Apr2025 19:58:02.880] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:grizzly_bear [28Apr2025 19:58:02.881] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:guster [28Apr2025 19:58:02.881] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:hammerhead_shark [28Apr2025 19:58:02.881] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:hummingbird [28Apr2025 19:58:02.881] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:jerboa [28Apr2025 19:58:02.881] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:kangaroo [28Apr2025 19:58:02.881] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:komodo_dragon [28Apr2025 19:58:02.881] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:laviathan [28Apr2025 19:58:02.881] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:leafcutter_ant [28Apr2025 19:58:02.881] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:lobster [28Apr2025 19:58:02.881] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:maned_wolf [28Apr2025 19:58:02.881] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:mantis_shrimp [28Apr2025 19:58:02.881] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:mimic_octopus [28Apr2025 19:58:02.881] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:mimicube [28Apr2025 19:58:02.881] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:moose [28Apr2025 19:58:02.881] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:mudskipper [28Apr2025 19:58:02.882] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:mungus [28Apr2025 19:58:02.882] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:murmur [28Apr2025 19:58:02.882] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:murmur_head [28Apr2025 19:58:02.882] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:orca [28Apr2025 19:58:02.882] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:platypus [28Apr2025 19:58:02.882] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:potoo [28Apr2025 19:58:02.882] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:raccoon [28Apr2025 19:58:02.882] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:rain_frog [28Apr2025 19:58:02.882] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:rattlesnake [28Apr2025 19:58:02.882] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:rhinoceros [28Apr2025 19:58:02.882] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:roadrunner [28Apr2025 19:58:02.882] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:rocky_roller [28Apr2025 19:58:02.882] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:sea_bear [28Apr2025 19:58:02.882] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:seagull [28Apr2025 19:58:02.883] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:seal [28Apr2025 19:58:02.883] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:shoebill [28Apr2025 19:58:02.883] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:skelewag [28Apr2025 19:58:02.883] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:skreecher [28Apr2025 19:58:02.883] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:skunk [28Apr2025 19:58:02.883] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:snow_leopard [28Apr2025 19:58:02.883] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:soul_vulture [28Apr2025 19:58:02.883] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:spectre [28Apr2025 19:58:02.883] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:straddler [28Apr2025 19:58:02.883] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:stradpole [28Apr2025 19:58:02.883] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:sugar_glider [28Apr2025 19:58:02.883] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:sunbird [28Apr2025 19:58:02.883] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:tarantula_hawk [28Apr2025 19:58:02.883] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:tasmanian_devil [28Apr2025 19:58:02.883] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:terrapin [28Apr2025 19:58:02.884] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:tiger [28Apr2025 19:58:02.884] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:toucan [28Apr2025 19:58:02.884] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:triops [28Apr2025 19:58:02.884] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:tusklin [28Apr2025 19:58:02.884] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:underminer [28Apr2025 19:58:02.884] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:void_worm [28Apr2025 19:58:02.884] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:void_worm_part [28Apr2025 19:58:02.884] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:warped_mosco [28Apr2025 19:58:02.884] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:warped_toad [28Apr2025 19:58:02.884] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for betterend:cubozoa [28Apr2025 19:58:02.884] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for betterend:dragonfly [28Apr2025 19:58:02.884] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for betterend:end_fish [28Apr2025 19:58:02.885] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for betterend:end_slime [28Apr2025 19:58:02.885] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for betterend:silk_moth [28Apr2025 19:58:02.885] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for betternether:firefly [28Apr2025 19:58:02.885] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for betternether:hydrogen_jellyfish [28Apr2025 19:58:02.885] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for betternether:naga [28Apr2025 19:58:02.889] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:amethyst_crab [28Apr2025 19:58:02.889] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:ancient_remnant [28Apr2025 19:58:02.889] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:coral_golem [28Apr2025 19:58:02.889] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:coralssus [28Apr2025 19:58:02.889] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:deepling [28Apr2025 19:58:02.889] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:deepling_angler [28Apr2025 19:58:02.889] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:deepling_brute [28Apr2025 19:58:02.890] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:deepling_priest [28Apr2025 19:58:02.890] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:deepling_warlock [28Apr2025 19:58:02.890] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:ender_golem [28Apr2025 19:58:02.890] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:ender_guardian [28Apr2025 19:58:02.890] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:endermaptera [28Apr2025 19:58:02.890] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:ignis [28Apr2025 19:58:02.890] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:ignited_berserker [28Apr2025 19:58:02.890] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:ignited_revenant [28Apr2025 19:58:02.890] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:kobolediator [28Apr2025 19:58:02.890] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:koboleton [28Apr2025 19:58:02.890] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:lionfish [28Apr2025 19:58:02.890] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:modern_remnant [28Apr2025 19:58:02.890] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:nameless_sorcerer [28Apr2025 19:58:02.890] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:netherite_monstrosity [28Apr2025 19:58:02.890] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:the_baby_leviathan [28Apr2025 19:58:02.891] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:the_harbinger [28Apr2025 19:58:02.891] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:the_leviathan [28Apr2025 19:58:02.897] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:the_prowler [28Apr2025 19:58:02.897] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:the_watcher [28Apr2025 19:58:02.898] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:wadjet [28Apr2025 19:58:02.898] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for crabbersdelight:crab [28Apr2025 19:58:02.898] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for deeperdarker:sculk_centipede [28Apr2025 19:58:02.899] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for deeperdarker:sculk_leech [28Apr2025 19:58:02.899] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for deeperdarker:sculk_snapper [28Apr2025 19:58:02.899] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for deeperdarker:shattered [28Apr2025 19:58:02.899] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for deeperdarker:shriek_worm [28Apr2025 19:58:02.899] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for deeperdarker:stalker [28Apr2025 19:58:02.900] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for goodending:firefly_swarm [28Apr2025 19:58:02.900] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for goodending:marsh [28Apr2025 19:58:02.905] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for minecraft:creeper [28Apr2025 19:58:02.905] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for minecraft:enderman [28Apr2025 19:58:02.906] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for minecraft:piglin [28Apr2025 19:58:02.906] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for minecraft:piglin_brute [28Apr2025 19:58:02.907] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for minecraft:zombified_piglin [28Apr2025 19:58:02.907] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for outer_end:entombed [28Apr2025 19:58:02.907] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for outer_end:himmelite [28Apr2025 19:58:02.907] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for outer_end:purpur_golem [28Apr2025 19:58:02.907] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for outer_end:sinker [28Apr2025 19:58:02.907] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for outer_end:stalker [28Apr2025 19:58:02.909] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Reloaded radar icon resources! [28Apr2025 19:58:02.947] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting net/minecraft/world/level/chunk/LevelChunk$EntityCreationType [28Apr2025 19:58:02.951] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting fuzs/overflowingbars/client/handler/HealthBarRenderer$HeartType [28Apr2025 19:58:02.997] [Render thread/INFO] [inventoryhud/]: Curios has been initialized with 20 slot(s) after 1 tries [28Apr2025 19:58:03.047] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting fi/dy/masa/malilib/gui/Message$MessageType [28Apr2025 19:58:13.337] [CullThread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting com/logisticscraft/occlusionculling/OcclusionCullingInstance$Relative [28Apr2025 19:58:38.795] [Render thread/INFO] [mixin/]: Mixing client.MixinGuiMessageTag from mixins/common/nochatreports.mixins.json into net.minecraft.client.GuiMessageTag [28Apr2025 19:58:39.613] [Render thread/INFO] [net.minecraft.client.gui.components.ChatComponent/]: [CHAT] Unable to open Quest GUI: no quest book data received from server! [28Apr2025 19:58:40.386] [Render thread/INFO] [net.minecraft.client.gui.components.ChatComponent/]: [CHAT] - Check that FTB Quests and FTB Teams are installed on the server [28Apr2025 19:58:40.386] [Render thread/INFO] [net.minecraft.client.gui.components.ChatComponent/]: [CHAT]   and that no server-side errors were logged when you connected. [28Apr2025 19:58:40.386] [Render thread/ERROR] [toni.ftbquestsfreezefix.FTBQuestsFreezeFix/]: [FTB Quests Freeze Fix] ERROR! Could not get FTB Quests GUI! [28Apr2025 19:58:50.284] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting xaero/hud/minimap/compass/render/CardinalDirection [28Apr2025 19:59:24.781] [Render thread/INFO] [xaero.map.WorldMap/]: Finalizing world map session... [28Apr2025 19:59:24.782] [Thread-42/INFO] [xaero.map.WorldMap/]: World map force-cleaned! [28Apr2025 19:59:24.803] [Render thread/INFO] [xaero.map.WorldMap/]: World map session finalized. [28Apr2025 19:59:24.803] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Xaero hud session finalized. [28Apr2025 19:59:24.805] [Render thread/INFO] [fr.rakambda.fallingtree.common.network.PacketUtils/]: Disconnected from server, resetting proxy config values [28Apr2025 19:59:24.807] [Render thread/INFO] [mezz.jei.forge.startup.StartEventObserver/]: JEI StartEventObserver received class net.minecraftforge.client.event.ClientPlayerNetworkEvent$LoggingOut [28Apr2025 19:59:24.807] [Render thread/INFO] [mezz.jei.forge.startup.StartEventObserver/]: JEI StartEventObserver transitioning state from ENABLED to DISABLED [28Apr2025 19:59:24.808] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting tocraft/walkers/api/platform/ApiLevel [28Apr2025 19:59:24.810] [Render thread/INFO] [inventoryhud/]: Curios disabled [28Apr2025 19:59:24.810] [Render thread/INFO] [Framework/]: Unloading synced configs from server [28Apr2025 19:59:24.811] [Render thread/INFO] [Framework/]: Sending config unload event for backpacked.server.toml [28Apr2025 19:59:24.848] [Render thread/INFO] [voicechat/]: [voicechat] Clearing audio channels [28Apr2025 19:59:25.986] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting net/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener [28Apr2025 19:59:25.988] [Render thread/INFO] [ChunkBuilder/]: Stopping worker threads [28Apr2025 19:59:26.000] [Render thread/INFO] [Entity Texture Features/]: [ETF]: emissive suffixes loaded: {_e}. [28Apr2025 19:59:26.002] [Render thread/INFO] [de.keksuccino.fancymenu.customization.layer.ScreenCustomizationLayerHandler/]: [FANCYMENU] ScreenCustomizationLayer registered: disconnected_screen [28Apr2025 19:59:26.024] [Render thread/INFO] [HammerLib/]: Reset 0 configs to their client-side state. [28Apr2025 19:59:30.962] [Render thread/WARN] [com.sunekaer.sdrp.discord.RPClient/]: Attempted to add context to update queue, operation failed due to a full list, something is likely wrong here or the discord client isn't present [28Apr2025 19:59:30.962] [Render thread/WARN] [com.sunekaer.sdrp.discord.RPClient/]: Attempted to add context to update queue, operation failed due to a full list, something is likely wrong here or the discord client isn't present [28Apr2025 19:59:31.122] [Render thread/WARN] [com.sunekaer.sdrp.discord.RPClient/]: Attempted to add context to update queue, operation failed due to a full list, something is likely wrong here or the discord client isn't present [28Apr2025 19:59:31.122] [Render thread/WARN] [com.sunekaer.sdrp.discord.RPClient/]: Attempted to add context to update queue, operation failed due to a full list, something is likely wrong here or the discord client isn't present [28Apr2025 19:59:31.122] [Render thread/WARN] [com.sunekaer.sdrp.discord.RPClient/]: Attempted to add context to update queue, operation failed due to a full list, something is likely wrong here or the discord client isn't present [28Apr2025 19:59:31.234] [Render thread/WARN] [com.sunekaer.sdrp.discord.RPClient/]: Attempted to add context to update queue, operation failed due to a full list, something is likely wrong here or the discord client isn't present [28Apr2025 19:59:31.234] [Render thread/WARN] [com.sunekaer.sdrp.discord.RPClient/]: Attempted to add context to update queue, operation failed due to a full list, something is likely wrong here or the discord client isn't present [28Apr2025 19:59:31.235] [Render thread/WARN] [com.sunekaer.sdrp.discord.RPClient/]: Attempted to add context to update queue, operation failed due to a full list, something is likely wrong here or the discord client isn't present [28Apr2025 19:59:33.225] [Render thread/WARN] [com.sunekaer.sdrp.discord.RPClient/]: Attempted to add context to update queue, operation failed due to a full list, something is likely wrong here or the discord client isn't present [28Apr2025 19:59:33.226] [Render thread/WARN] [com.sunekaer.sdrp.discord.RPClient/]: Attempted to add context to update queue, operation failed due to a full list, something is likely wrong here or the discord client isn't present [28Apr2025 19:59:33.226] [Render thread/WARN] [com.sunekaer.sdrp.discord.RPClient/]: Attempted to add context to update queue, operation failed due to a full list, something is likely wrong here or the discord client isn't present [28Apr2025 19:59:57.041] [Render thread/INFO] [de.keksuccino.fancymenu.customization.layer.ScreenCustomizationLayerHandler/]: [FANCYMENU] ScreenCustomizationLayer registered: edit_server_screen [28Apr2025 19:59:57.049] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting com/mojang/realmsclient/client/Ping$Region [28Apr2025 19:59:57.050] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting com/mojang/realmsclient/util/LevelType [28Apr2025 20:00:02.674] [Render thread/INFO] [fr.rakambda.fallingtree.common.network.PacketUtils/]: Disconnected from server, resetting proxy config values [28Apr2025 20:00:02.675] [Render thread/INFO] [inventoryhud/]: Curios disabled [28Apr2025 20:00:02.691] [Render thread/INFO] [Entity Texture Features/]: [ETF]: emissive suffixes loaded: {_e}. [28Apr2025 20:00:02.693] [Render thread/INFO] [net.minecraft.client.gui.screens.ConnectScreen/]: Connecting to serveurdeladiesman217.bh-games.com, 25565 [28Apr2025 20:00:07.511] [Render thread/INFO] [org.sinytra.connector.mod.compat.RegistryUtil/]: Connector found 9 items to retain in registry minecraft:particle_type [28Apr2025 20:00:08.567] [Netty Client IO #14/INFO] [Puzzles Lib/]: Reloading server config for netherchested [28Apr2025 20:00:08.569] [Netty Client IO #14/INFO] [Puzzles Lib/]: Reloading server config for puzzlesapi [28Apr2025 20:00:08.571] [Netty Client IO #14/INFO] [Puzzles Lib/]: Reloading server config for leavesbegone [28Apr2025 20:00:08.572] [Netty Client IO #14/INFO] [Puzzles Lib/]: Reloading server config for illagerinvasion [28Apr2025 20:00:08.576] [Netty Client IO #14/INFO] [Puzzles Lib/]: Reloading server config for easyanvils [28Apr2025 20:00:08.577] [Netty Client IO #14/INFO] [Puzzles Lib/]: Reloading server config for barteringstation [28Apr2025 20:00:08.583] [Netty Client IO #14/INFO] [Puzzles Lib/]: Reloading server config for magnumtorch [28Apr2025 20:00:08.587] [Netty Client IO #14/INFO] [Puzzles Lib/]: Reloading server config for enchantinginfuser [28Apr2025 20:00:08.588] [Netty Client IO #14/INFO] [Puzzles Lib/]: Reloading server config for tradingpost [28Apr2025 20:00:08.589] [Netty Client IO #14/INFO] [Puzzles Lib/]: Reloading server config for easymagic [28Apr2025 20:00:08.966] [Render thread/INFO] [Framework/]: Loading synced config from server: backpacked:server [28Apr2025 20:00:09.210] [Netty Client IO #14/INFO] [net.minecraftforge.network.NetworkHooks/]: Connected to a modded server. [28Apr2025 20:00:09.210] [Netty Client IO #14/INFO] [snownee.kiwi.Kiwi/]: Canceling Microsoft telemetry [28Apr2025 20:00:09.307] [Render thread/INFO] [xaero.map.WorldMap/]: New world map session initialized! [28Apr2025 20:00:09.310] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: New Xaero hud session initialized! [28Apr2025 20:00:09.359] [Render thread/INFO] [Oculus/]: Reloading pipeline on dimension change: NamespacedId{namespace='minecraft', name='overworld'} => NamespacedId{namespace='minecraft', name='overworld'} [28Apr2025 20:00:09.359] [Render thread/INFO] [Oculus/]: Destroying pipeline NamespacedId{namespace='minecraft', name='overworld'} [28Apr2025 20:00:09.359] [Render thread/INFO] [Oculus/]: Creating pipeline for dimension NamespacedId{namespace='minecraft', name='overworld'} [28Apr2025 20:00:09.375] [Render thread/INFO] [ChunkBuilder/]: Started 10 worker threads [28Apr2025 20:00:09.392] [Render thread/INFO] [mezz.jei.forge.startup.StartEventObserver/]: JEI StartEventObserver received class net.minecraftforge.client.event.ClientPlayerNetworkEvent$LoggingIn [28Apr2025 20:00:09.392] [Render thread/INFO] [mezz.jei.forge.startup.StartEventObserver/]: JEI StartEventObserver transitioning state from DISABLED to ENABLED [28Apr2025 20:00:09.403] [Render thread/INFO] [voicechat/]: [voicechat] Sending secret request to the server [28Apr2025 20:00:09.433] [Render thread/INFO] [Sound Physics - General/]: Initializing sound physics for voice chat audio [28Apr2025 20:00:09.433] [Render thread/INFO] [Sound Physics - General/]: Initializing Sound Physics [28Apr2025 20:00:09.433] [Render thread/INFO] [Sound Physics - General/]: EFX Extension recognized [28Apr2025 20:00:09.433] [Render thread/INFO] [Sound Physics - General/]: Max auxiliary sends: 2 [28Apr2025 20:00:09.434] [Render thread/INFO] [Sound Physics - General/]: Aux slot 1 created [28Apr2025 20:00:09.434] [Render thread/INFO] [Sound Physics - General/]: Aux slot 2 created [28Apr2025 20:00:09.434] [Render thread/INFO] [Sound Physics - General/]: Aux slot 3 created [28Apr2025 20:00:09.434] [Render thread/INFO] [Sound Physics - General/]: Aux slot 4 created [28Apr2025 20:00:09.435] [Render thread/INFO] [Sound Physics - General/]: EFX ready [28Apr2025 20:00:09.444] [Render thread/WARN] [Continuity/]: Unknown biome 'minecraft:snowy_mountains' [28Apr2025 20:00:09.444] [Render thread/WARN] [Continuity/]: Unknown biome 'minecraft:snowy_tundra' [28Apr2025 20:00:09.444] [Render thread/WARN] [Continuity/]: Unknown biome 'minecraft:wooded_mountains' [28Apr2025 20:00:09.444] [Render thread/WARN] [Continuity/]: Unknown biome 'minecraft:' [28Apr2025 20:00:09.444] [Render thread/WARN] [Continuity/]: Unknown biome 'minecraft:snowy_taiga_mountains' [28Apr2025 20:00:09.444] [Render thread/WARN] [Continuity/]: Unknown biome 'minecraft:gravelly_mountains' [28Apr2025 20:00:09.444] [Render thread/WARN] [Continuity/]: Unknown biome 'minecraft:wooded_hills' [28Apr2025 20:00:09.444] [Render thread/WARN] [Continuity/]: Unknown biome 'minecraft:mountain_edge' [28Apr2025 20:00:09.444] [Render thread/WARN] [Continuity/]: Unknown biome 'minecraft:mountains' [28Apr2025 20:00:09.444] [Render thread/INFO] [org.betterx.worlds.together.util.Logger/]: [bclib] Auto-Sync was disabled on the client. [28Apr2025 20:00:09.475] [Render thread/INFO] [ModdingLegacy/blue_skies/]: Recieved ToolHandleTypeManager from the server [28Apr2025 20:00:09.476] [Render thread/INFO] [ModdingLegacy/blue_skies/]: Recieved SnowcapOvenFreezingManager from the server [28Apr2025 20:00:09.476] [Render thread/INFO] [ModdingLegacy/blue_skies/]: Recieved HorizoniteForgeFuelManager from the server [28Apr2025 20:00:09.476] [Render thread/INFO] [ModdingLegacy/blue_skies/]: Recieved AlchemyRecipeManager from the server [28Apr2025 20:00:09.476] [Render thread/INFO] [ModdingLegacy/blue_skies/]: Recieved JournalEntryManager from the server [28Apr2025 20:00:09.477] [Render thread/INFO] [ModdingLegacy/blue_skies/]: Recieved JournalSectionManager from the server [28Apr2025 20:00:09.477] [Render thread/INFO] [ModdingLegacy/blue_skies/]: Recieved JournalRequirementManager from the server [28Apr2025 20:00:09.480] [Render thread/INFO] [Supplementaries/]: Synced Flute Songs [28Apr2025 20:00:09.480] [Render thread/INFO] [Supplementaries/]: Synced Captured Mobs settings [28Apr2025 20:00:09.480] [Render thread/INFO] [Supplementaries/]: Synced Globe data [28Apr2025 20:00:09.480] [Render thread/INFO] [Supplementaries/]: Synced Hourglass data [28Apr2025 20:00:09.480] [Render thread/INFO] [placebo/]: Starting sync for enchanting_stats [28Apr2025 20:00:09.481] [Render thread/INFO] [Apotheosis : Enchantment/]: Registered 39 enchanting_stats. [28Apr2025 20:00:09.481] [Render thread/INFO] [placebo/]: Starting sync for rarities [28Apr2025 20:00:09.482] [Render thread/INFO] [Apotheosis : Adventure/]: Registered 9 rarities. [28Apr2025 20:00:09.482] [Render thread/INFO] [placebo/]: Starting sync for affixes [28Apr2025 20:00:09.490] [Render thread/INFO] [Apotheosis : Adventure/]: Registered 179 affixes. [28Apr2025 20:00:09.491] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:uncommon for category curios:charmRequired: 3; Provided: 2 [28Apr2025 20:00:09.492] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:uncommon for category curios:braceletRequired: 3; Provided: 2 [28Apr2025 20:00:09.492] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:uncommon for category curios:scrollRequired: 3; Provided: 2 [28Apr2025 20:00:09.492] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:uncommon for category curios:an_focusRequired: 3; Provided: 2 [28Apr2025 20:00:09.492] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:uncommon for category curios:necklaceRequired: 3; Provided: 2 [28Apr2025 20:00:09.492] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:uncommon for category curios:ringRequired: 3; Provided: 2 [28Apr2025 20:00:09.492] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:uncommon for category curios:spellstoneRequired: 3; Provided: 2 [28Apr2025 20:00:09.492] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:uncommon for category curios:talismanRequired: 3; Provided: 2 [28Apr2025 20:00:09.492] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:uncommon for category curios:beltRequired: 3; Provided: 2 [28Apr2025 20:00:09.493] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:rare for category curios:charmRequired: 3; Provided: 2 [28Apr2025 20:00:09.493] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:rare for category curios:braceletRequired: 3; Provided: 2 [28Apr2025 20:00:09.493] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:rare for category curios:scrollRequired: 3; Provided: 2 [28Apr2025 20:00:09.493] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:rare for category curios:an_focusRequired: 3; Provided: 2 [28Apr2025 20:00:09.493] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:rare for category curios:necklaceRequired: 3; Provided: 2 [28Apr2025 20:00:09.493] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:rare for category curios:ringRequired: 3; Provided: 2 [28Apr2025 20:00:09.493] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:rare for category curios:spellstoneRequired: 3; Provided: 2 [28Apr2025 20:00:09.493] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:rare for category curios:talismanRequired: 3; Provided: 2 [28Apr2025 20:00:09.493] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:rare for category curios:beltRequired: 3; Provided: 2 [28Apr2025 20:00:09.494] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:epic for category curios:charmRequired: 4; Provided: 2 [28Apr2025 20:00:09.494] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:epic for category curios:braceletRequired: 4; Provided: 2 [28Apr2025 20:00:09.494] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:epic for category curios:scrollRequired: 4; Provided: 2 [28Apr2025 20:00:09.494] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:epic for category curios:an_focusRequired: 4; Provided: 2 [28Apr2025 20:00:09.494] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:epic for category curios:necklaceRequired: 4; Provided: 2 [28Apr2025 20:00:09.494] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:epic for category curios:ringRequired: 4; Provided: 2 [28Apr2025 20:00:09.494] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:epic for category curios:spellstoneRequired: 4; Provided: 2 [28Apr2025 20:00:09.494] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:epic for category curios:talismanRequired: 4; Provided: 2 [28Apr2025 20:00:09.494] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:epic for category curios:beltRequired: 4; Provided: 2 [28Apr2025 20:00:09.497] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:mythic for category curios:charmRequired: 4; Provided: 2 [28Apr2025 20:00:09.497] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:mythic for category curios:braceletRequired: 4; Provided: 2 [28Apr2025 20:00:09.497] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:mythic for category curios:scrollRequired: 4; Provided: 2 [28Apr2025 20:00:09.497] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:mythic for category curios:an_focusRequired: 4; Provided: 2 [28Apr2025 20:00:09.497] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:mythic for category curios:necklaceRequired: 4; Provided: 2 [28Apr2025 20:00:09.497] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:mythic for category curios:ringRequired: 4; Provided: 2 [28Apr2025 20:00:09.498] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:mythic for category curios:spellstoneRequired: 4; Provided: 2 [28Apr2025 20:00:09.498] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:mythic for category curios:talismanRequired: 4; Provided: 2 [28Apr2025 20:00:09.498] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:mythic for category curios:beltRequired: 4; Provided: 2 [28Apr2025 20:00:09.500] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category helmetRequired: 5; Provided: 4 [28Apr2025 20:00:09.500] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category chestplateRequired: 5; Provided: 4 [28Apr2025 20:00:09.500] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category leggingsRequired: 5; Provided: 4 [28Apr2025 20:00:09.500] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category bootsRequired: 5; Provided: 4 [28Apr2025 20:00:09.500] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category shieldRequired: 5; Provided: 4 [28Apr2025 20:00:09.500] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:charmRequired: 5; Provided: 2 [28Apr2025 20:00:09.500] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:braceletRequired: 5; Provided: 2 [28Apr2025 20:00:09.500] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:scrollRequired: 5; Provided: 2 [28Apr2025 20:00:09.500] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:an_focusRequired: 5; Provided: 2 [28Apr2025 20:00:09.500] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:necklaceRequired: 5; Provided: 2 [28Apr2025 20:00:09.500] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:ringRequired: 5; Provided: 2 [28Apr2025 20:00:09.500] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:spellstoneRequired: 5; Provided: 2 [28Apr2025 20:00:09.500] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:talismanRequired: 5; Provided: 2 [28Apr2025 20:00:09.501] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:beltRequired: 5; Provided: 2 [28Apr2025 20:00:09.501] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:backRequired: 5; Provided: 4 [28Apr2025 20:00:09.501] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:feetRequired: 5; Provided: 4 [28Apr2025 20:00:09.501] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:headRequired: 5; Provided: 4 [28Apr2025 20:00:09.501] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:bodyRequired: 5; Provided: 4 [28Apr2025 20:00:09.501] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:handsRequired: 5; Provided: 4 [28Apr2025 20:00:09.501] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category bowRequired: 5; Provided: 4 [28Apr2025 20:00:09.501] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category crossbowRequired: 5; Provided: 4 [28Apr2025 20:00:09.501] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category heavy_weaponRequired: 5; Provided: 3 [28Apr2025 20:00:09.502] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category shieldRequired: 5; Provided: 4 [28Apr2025 20:00:09.502] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:charmRequired: 5; Provided: 2 [28Apr2025 20:00:09.502] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:braceletRequired: 5; Provided: 2 [28Apr2025 20:00:09.502] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:scrollRequired: 5; Provided: 2 [28Apr2025 20:00:09.502] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:an_focusRequired: 5; Provided: 2 [28Apr2025 20:00:09.502] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:necklaceRequired: 5; Provided: 2 [28Apr2025 20:00:09.502] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:ringRequired: 5; Provided: 2 [28Apr2025 20:00:09.502] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:spellstoneRequired: 5; Provided: 2 [28Apr2025 20:00:09.502] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:talismanRequired: 5; Provided: 2 [28Apr2025 20:00:09.502] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:beltRequired: 5; Provided: 2 [28Apr2025 20:00:09.502] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:backRequired: 5; Provided: 4 [28Apr2025 20:00:09.502] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:feetRequired: 5; Provided: 4 [28Apr2025 20:00:09.502] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:headRequired: 5; Provided: 4 [28Apr2025 20:00:09.502] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:bodyRequired: 5; Provided: 4 [28Apr2025 20:00:09.502] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:handsRequired: 5; Provided: 4 [28Apr2025 20:00:09.503] [Render thread/INFO] [placebo/]: Starting sync for gems [28Apr2025 20:00:09.523] [Render thread/INFO] [Apotheosis : Adventure/]: Registered 57 gems. [28Apr2025 20:00:09.687] [Render thread/INFO] [inventoryhud/]: Curios has been initialized with 20 slot(s) after 1 tries [28Apr2025 20:00:10.042] [Netty Client IO #14/WARN] [net.minecraftforge.network.filters.VanillaPacketSplitter/]: forge:split received out of order - inbound buffer not empty when receiving first [28Apr2025 20:01:57.187] [Render thread/INFO] [xaero.map.WorldMap/]: Finalizing world map session... [28Apr2025 20:01:57.187] [Thread-42/INFO] [xaero.map.WorldMap/]: World map force-cleaned! [28Apr2025 20:01:57.208] [Render thread/INFO] [xaero.map.WorldMap/]: World map session finalized. [28Apr2025 20:01:57.208] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Xaero hud session finalized. [28Apr2025 20:01:57.209] [Render thread/INFO] [fr.rakambda.fallingtree.common.network.PacketUtils/]: Disconnected from server, resetting proxy config values [28Apr2025 20:01:57.211] [Render thread/INFO] [mezz.jei.forge.startup.StartEventObserver/]: JEI StartEventObserver received class net.minecraftforge.client.event.ClientPlayerNetworkEvent$LoggingOut [28Apr2025 20:01:57.211] [Render thread/INFO] [mezz.jei.forge.startup.StartEventObserver/]: JEI StartEventObserver transitioning state from ENABLED to DISABLED [28Apr2025 20:01:57.212] [Render thread/INFO] [inventoryhud/]: Curios disabled [28Apr2025 20:01:57.212] [Render thread/INFO] [Framework/]: Unloading synced configs from server [28Apr2025 20:01:57.212] [Render thread/INFO] [Framework/]: Sending config unload event for backpacked.server.toml [28Apr2025 20:01:57.228] [Render thread/INFO] [voicechat/]: [voicechat] Clearing audio channels [28Apr2025 20:01:58.187] [Render thread/INFO] [ChunkBuilder/]: Stopping worker threads [28Apr2025 20:01:58.195] [Render thread/INFO] [Entity Texture Features/]: [ETF]: emissive suffixes loaded: {_e}. [28Apr2025 20:01:58.196] [Render thread/INFO] [HammerLib/]: Reset 0 configs to their client-side state. [28Apr2025 20:02:03.657] [Render thread/INFO] [net.minecraft.client.Minecraft/]: Stopping! [28Apr2025 20:02:03.973] [Render thread/INFO] [fr.rakambda.fallingtree.common.network.PacketUtils/]: Disconnected from server, resetting proxy config values [28Apr2025 20:02:03.976] [Render thread/INFO] [inventoryhud/]: Curios disabled [28Apr2025 20:02:03.984] [Render thread/INFO] [Entity Texture Features/]: [ETF]: emissive suffixes loaded: {_e}.    
    • mouseclicked event handler again. https://paste.ee/p/p5C057U7
    • I don't think so You also can work with adding mods groups - so add 5 to 10 mods and remember these - if the game crash, check these mods   You can also add crash-reports here with sites like https://mclo.gs/ You will find these in the crash-report folder - if there is no crash-report, use the latest.log from the logs folder
    • Thank you so much for the help, it works! o((>ω< ))o Is there any way around this, though? It's a little bit tedious having to slowly download mods one by one, and waiting on them to download to download another one lol.
    • Never mind, I figured it out. I already have "allow content management" enabled though.
  • Topics

×
×
  • Create New...

Important Information

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