lukas2005
Forge Modder-
Posts
289 -
Joined
-
Days Won
2
Everything posted by lukas2005
-
i tried putting it inside of init just to quickly test it
-
Hello I am trying to draw a normal 2D texture on screen I tried using this code Minecraft.getMinecraft().renderEngine.bindTexture(new ResourceLocation("cm","textures/test1.png")); Minecraft.getMinecraft().ingameGUI.drawTexturedModalRect(0, 0, 0, 0, 1920, 1080); but it throws NullPointerException
-
well, there's Minecraft.getMinecraft().getGPUInfo() (or so mething like that i don have my ide launched right now) EDIT: checked there is no such method :(
-
We here at forums are not magicians please post full log on pastebin.com or using code tags because this log os tottaly telling us almost nothing and also please post code that raised that exception/is suspicious for doing that
-
[1.10.2] Extending/attaching additional data to itemstack?
lukas2005 replied to lukas2005's topic in Modder Support
ok i did this and now i have this code: (link to repo is in my signature) and it crashes with Null Pointer Excepion while sending packets log: at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:107) 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:240) at lukas2005.idea.caps.IItemStackData$DefaultImpl.setWeight(IItemStackData.java:67) at lukas2005.idea.caps.IItemStackData$DefaultImpl.<init>(IItemStackData.java:47) at lukas2005.idea.caps.IItemStackData$Provider.<init>(IItemStackData.java:91) at lukas2005.idea.EventHooks.onItemAttachCap(EventHooks.java:36) at net.minecraftforge.fml.common.eventhandler.ASMEventHandler_6_EventHooks_onItemAttachCap_Item.invoke(.dynamic) at net.minecraftforge.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:90) at net.minecraftforge.fml.common.eventhandler.EventBus.post(EventBus.java:185) at net.minecraftforge.event.ForgeEventFactory.gatherCapabilities(ForgeEventFactory.java:565) at net.minecraftforge.event.ForgeEventFactory.gatherCapabilities(ForgeEventFactory.java:555) at net.minecraft.item.ItemStack.setItem(ItemStack.java:1084) at net.minecraft.item.ItemStack.readFromNBT(ItemStack.java:218) at net.minecraft.item.ItemStack.loadItemStackFromNBT(ItemStack.java:113) at net.minecraft.entity.item.EntityItem.readEntityFromNBT(EntityItem.java:391) at net.minecraft.entity.Entity.readFromNBT(Entity.java:1922) at net.minecraft.entity.EntityList.createEntityFromNBT(EntityList.java:187) at net.minecraft.world.chunk.storage.AnvilChunkLoader.createEntityFromNBT(AnvilChunkLoader.java:626) at net.minecraft.world.chunk.storage.AnvilChunkLoader.readChunkEntity(AnvilChunkLoader.java:553) at net.minecraft.world.chunk.storage.AnvilChunkLoader.loadEntities(AnvilChunkLoader.java:503) at net.minecraftforge.common.chunkio.ChunkIOProvider.syncCallback(ChunkIOProvider.java:96) at net.minecraftforge.common.chunkio.ChunkIOExecutor.syncChunkLoad(ChunkIOExecutor.java:94) at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:121) at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:92) at net.minecraft.world.gen.ChunkProviderServer.provideChunk(ChunkProviderServer.java:138) at net.minecraft.server.MinecraftServer.initialWorldChunkLoad(MinecraftServer.java:336) at net.minecraft.server.integrated.IntegratedServer.loadAllWorlds(IntegratedServer.java:107) at net.minecraft.server.integrated.IntegratedServer.startServer(IntegratedServer.java:124) at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:496) at java.lang.Thread.run(Unknown Source) Caused by: java.lang.NullPointerException at lukas2005.idea.network.packets.ItemStackDataMessage.toBytes(ItemStackDataMessage.java:30) at net.minecraftforge.fml.common.network.simpleimpl.SimpleIndexedCodec.encodeInto(SimpleIndexedCodec.java:30) at net.minecraftforge.fml.common.network.simpleimpl.SimpleIndexedCodec.encodeInto(SimpleIndexedCodec.java:26) at net.minecraftforge.fml.common.network.FMLIndexedMessageToMessageCodec.encode(FMLIndexedMessageToMessageCodec.java:73) at io.netty.handler.codec.MessageToMessageCodec$1.encode(MessageToMessageCodec.java:67) at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:89) ... 36 more [17:52:43] [server thread/ERROR] [FML]: FMLIndexedMessageCodec exception caught io.netty.handler.codec.EncoderException: java.lang.NullPointerException at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:107) ~[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:240) [simpleNetworkWrapper.class:?] at lukas2005.idea.caps.IItemStackData$DefaultImpl.setWeight(IItemStackData.java:67) [iItemStackData$DefaultImpl.class:?] at lukas2005.idea.caps.IItemStackData$DefaultImpl.<init>(IItemStackData.java:47) [iItemStackData$DefaultImpl.class:?] at lukas2005.idea.caps.IItemStackData$Provider.<init>(IItemStackData.java:91) [iItemStackData$Provider.class:?] at lukas2005.idea.EventHooks.onItemAttachCap(EventHooks.java:36) [EventHooks.class:?] at net.minecraftforge.fml.common.eventhandler.ASMEventHandler_6_EventHooks_onItemAttachCap_Item.invoke(.dynamic) [?:?] at net.minecraftforge.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:90) [ASMEventHandler.class:?] at net.minecraftforge.fml.common.eventhandler.EventBus.post(EventBus.java:185) [EventBus.class:?] at net.minecraftforge.event.ForgeEventFactory.gatherCapabilities(ForgeEventFactory.java:565) [ForgeEventFactory.class:?] at net.minecraftforge.event.ForgeEventFactory.gatherCapabilities(ForgeEventFactory.java:555) [ForgeEventFactory.class:?] at net.minecraft.item.ItemStack.setItem(ItemStack.java:1084) [itemStack.class:?] at net.minecraft.item.ItemStack.readFromNBT(ItemStack.java:218) [itemStack.class:?] at net.minecraft.item.ItemStack.loadItemStackFromNBT(ItemStack.java:113) [itemStack.class:?] at net.minecraft.entity.item.EntityItem.readEntityFromNBT(EntityItem.java:391) [EntityItem.class:?] at net.minecraft.entity.Entity.readFromNBT(Entity.java:1922) [Entity.class:?] at net.minecraft.entity.EntityList.createEntityFromNBT(EntityList.java:187) [EntityList.class:?] at net.minecraft.world.chunk.storage.AnvilChunkLoader.createEntityFromNBT(AnvilChunkLoader.java:626) [AnvilChunkLoader.class:?] at net.minecraft.world.chunk.storage.AnvilChunkLoader.readChunkEntity(AnvilChunkLoader.java:553) [AnvilChunkLoader.class:?] at net.minecraft.world.chunk.storage.AnvilChunkLoader.loadEntities(AnvilChunkLoader.java:503) [AnvilChunkLoader.class:?] at net.minecraftforge.common.chunkio.ChunkIOProvider.syncCallback(ChunkIOProvider.java:96) [ChunkIOProvider.class:?] at net.minecraftforge.common.chunkio.ChunkIOExecutor.syncChunkLoad(ChunkIOExecutor.java:94) [ChunkIOExecutor.class:?] at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:121) [ChunkProviderServer.class:?] at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:92) [ChunkProviderServer.class:?] at net.minecraft.world.gen.ChunkProviderServer.provideChunk(ChunkProviderServer.java:138) [ChunkProviderServer.class:?] at net.minecraft.server.MinecraftServer.initialWorldChunkLoad(MinecraftServer.java:336) [MinecraftServer.class:?] at net.minecraft.server.integrated.IntegratedServer.loadAllWorlds(IntegratedServer.java:107) [integratedServer.class:?] at net.minecraft.server.integrated.IntegratedServer.startServer(IntegratedServer.java:124) [integratedServer.class:?] at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:496) [MinecraftServer.class:?] at java.lang.Thread.run(Unknown Source) [?:1.8.0_111] Caused by: java.lang.NullPointerException at lukas2005.idea.network.packets.ItemStackDataMessage.toBytes(ItemStackDataMessage.java:30) ~[itemStackDataMessage.class:?] at net.minecraftforge.fml.common.network.simpleimpl.SimpleIndexedCodec.encodeInto(SimpleIndexedCodec.java:30) ~[simpleIndexedCodec.class:?] at net.minecraftforge.fml.common.network.simpleimpl.SimpleIndexedCodec.encodeInto(SimpleIndexedCodec.java:26) ~[simpleIndexedCodec.class:?] at net.minecraftforge.fml.common.network.FMLIndexedMessageToMessageCodec.encode(FMLIndexedMessageToMessageCodec.java:73) ~[FMLIndexedMessageToMessageCodec.class:?] at io.netty.handler.codec.MessageToMessageCodec$1.encode(MessageToMessageCodec.java:67) ~[MessageToMessageCodec$1.class:4.0.23.Final] at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:89) ~[MessageToMessageEncoder.class:4.0.23.Final] ... 36 more sty 28, 2017 5:52:43 PM io.netty.channel.embedded.EmbeddedChannel recordException WARNING: More than one exception was raised. Will report only the first one and log others. io.netty.handler.codec.EncoderException: java.lang.NullPointerException at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:107) 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:240) at lukas2005.idea.caps.IItemStackData$DefaultImpl.setWeight(IItemStackData.java:67) at lukas2005.idea.caps.IItemStackData$DefaultImpl.<init>(IItemStackData.java:47) at lukas2005.idea.caps.IItemStackData$Provider.<init>(IItemStackData.java:91) at lukas2005.idea.EventHooks.onItemAttachCap(EventHooks.java:36) at net.minecraftforge.fml.common.eventhandler.ASMEventHandler_6_EventHooks_onItemAttachCap_Item.invoke(.dynamic) at net.minecraftforge.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:90) at net.minecraftforge.fml.common.eventhandler.EventBus.post(EventBus.java:185) at net.minecraftforge.event.ForgeEventFactory.gatherCapabilities(ForgeEventFactory.java:565) at net.minecraftforge.event.ForgeEventFactory.gatherCapabilities(ForgeEventFactory.java:555) at net.minecraft.item.ItemStack.setItem(ItemStack.java:1084) at net.minecraft.item.ItemStack.readFromNBT(ItemStack.java:218) at net.minecraft.item.ItemStack.loadItemStackFromNBT(ItemStack.java:113) at net.minecraft.entity.item.EntityItem.readEntityFromNBT(EntityItem.java:391) at net.minecraft.entity.Entity.readFromNBT(Entity.java:1922) at net.minecraft.entity.EntityList.createEntityFromNBT(EntityList.java:187) at net.minecraft.world.chunk.storage.AnvilChunkLoader.createEntityFromNBT(AnvilChunkLoader.java:626) at net.minecraft.world.chunk.storage.AnvilChunkLoader.readChunkEntity(AnvilChunkLoader.java:553) at net.minecraft.world.chunk.storage.AnvilChunkLoader.loadEntities(AnvilChunkLoader.java:503) at net.minecraftforge.common.chunkio.ChunkIOProvider.syncCallback(ChunkIOProvider.java:96) at net.minecraftforge.common.chunkio.ChunkIOExecutor.syncChunkLoad(ChunkIOExecutor.java:94) at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:121) at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:92) at net.minecraft.world.gen.ChunkProviderServer.provideChunk(ChunkProviderServer.java:138) at net.minecraft.server.MinecraftServer.initialWorldChunkLoad(MinecraftServer.java:336) at net.minecraft.server.integrated.IntegratedServer.loadAllWorlds(IntegratedServer.java:107) at net.minecraft.server.integrated.IntegratedServer.startServer(IntegratedServer.java:124) at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:496) at java.lang.Thread.run(Unknown Source) Caused by: java.lang.NullPointerException at lukas2005.idea.network.packets.ItemStackDataMessage.toBytes(ItemStackDataMessage.java:30) at net.minecraftforge.fml.common.network.simpleimpl.SimpleIndexedCodec.encodeInto(SimpleIndexedCodec.java:30) at net.minecraftforge.fml.common.network.simpleimpl.SimpleIndexedCodec.encodeInto(SimpleIndexedCodec.java:26) at net.minecraftforge.fml.common.network.FMLIndexedMessageToMessageCodec.encode(FMLIndexedMessageToMessageCodec.java:73) at io.netty.handler.codec.MessageToMessageCodec$1.encode(MessageToMessageCodec.java:67) at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:89) ... 36 more [17:52:44] [server thread/INFO]: Preparing spawn area: 60% [17:52:44] [server thread/ERROR] [FML]: FMLIndexedMessageCodec exception caught io.netty.handler.codec.EncoderException: java.lang.NullPointerException at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:107) ~[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:240) [simpleNetworkWrapper.class:?] at lukas2005.idea.caps.IItemStackData$DefaultImpl.setWeight(IItemStackData.java:67) [iItemStackData$DefaultImpl.class:?] at lukas2005.idea.caps.IItemStackData$DefaultImpl.<init>(IItemStackData.java:47) [iItemStackData$DefaultImpl.class:?] at lukas2005.idea.caps.IItemStackData$Provider.<init>(IItemStackData.java:91) [iItemStackData$Provider.class:?] at lukas2005.idea.EventHooks.onItemAttachCap(EventHooks.java:36) [EventHooks.class:?] at net.minecraftforge.fml.common.eventhandler.ASMEventHandler_6_EventHooks_onItemAttachCap_Item.invoke(.dynamic) [?:?] at net.minecraftforge.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:90) [ASMEventHandler.class:?] at net.minecraftforge.fml.common.eventhandler.EventBus.post(EventBus.java:185) [EventBus.class:?] at net.minecraftforge.event.ForgeEventFactory.gatherCapabilities(ForgeEventFactory.java:565) [ForgeEventFactory.class:?] at net.minecraftforge.event.ForgeEventFactory.gatherCapabilities(ForgeEventFactory.java:555) [ForgeEventFactory.class:?] at net.minecraft.item.ItemStack.setItem(ItemStack.java:1084) [itemStack.class:?] at net.minecraft.item.ItemStack.readFromNBT(ItemStack.java:218) [itemStack.class:?] at net.minecraft.item.ItemStack.loadItemStackFromNBT(ItemStack.java:113) [itemStack.class:?] at net.minecraft.entity.item.EntityItem.readEntityFromNBT(EntityItem.java:391) [EntityItem.class:?] at net.minecraft.entity.Entity.readFromNBT(Entity.java:1922) [Entity.class:?] at net.minecraft.entity.EntityList.createEntityFromNBT(EntityList.java:187) [EntityList.class:?] at net.minecraft.world.chunk.storage.AnvilChunkLoader.createEntityFromNBT(AnvilChunkLoader.java:626) [AnvilChunkLoader.class:?] at net.minecraft.world.chunk.storage.AnvilChunkLoader.readChunkEntity(AnvilChunkLoader.java:553) [AnvilChunkLoader.class:?] at net.minecraft.world.chunk.storage.AnvilChunkLoader.loadEntities(AnvilChunkLoader.java:503) [AnvilChunkLoader.class:?] at net.minecraftforge.common.chunkio.ChunkIOProvider.syncCallback(ChunkIOProvider.java:96) [ChunkIOProvider.class:?] at net.minecraftforge.common.chunkio.ChunkIOExecutor.syncChunkLoad(ChunkIOExecutor.java:94) [ChunkIOExecutor.class:?] at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:121) [ChunkProviderServer.class:?] at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:92) [ChunkProviderServer.class:?] at net.minecraft.world.gen.ChunkProviderServer.provideChunk(ChunkProviderServer.java:138) [ChunkProviderServer.class:?] at net.minecraft.server.MinecraftServer.initialWorldChunkLoad(MinecraftServer.java:336) [MinecraftServer.class:?] at net.minecraft.server.integrated.IntegratedServer.loadAllWorlds(IntegratedServer.java:107) [integratedServer.class:?] at net.minecraft.server.integrated.IntegratedServer.startServer(IntegratedServer.java:124) [integratedServer.class:?] at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:496) [MinecraftServer.class:?] at java.lang.Thread.run(Unknown Source) [?:1.8.0_111] Caused by: java.lang.NullPointerException at lukas2005.idea.network.packets.ItemStackDataMessage.toBytes(ItemStackDataMessage.java:30) ~[itemStackDataMessage.class:?] at net.minecraftforge.fml.common.network.simpleimpl.SimpleIndexedCodec.encodeInto(SimpleIndexedCodec.java:30) ~[simpleIndexedCodec.class:?] at net.minecraftforge.fml.common.network.simpleimpl.SimpleIndexedCodec.encodeInto(SimpleIndexedCodec.java:26) ~[simpleIndexedCodec.class:?] at net.minecraftforge.fml.common.network.FMLIndexedMessageToMessageCodec.encode(FMLIndexedMessageToMessageCodec.java:73) ~[FMLIndexedMessageToMessageCodec.class:?] at io.netty.handler.codec.MessageToMessageCodec$1.encode(MessageToMessageCodec.java:67) ~[MessageToMessageCodec$1.class:4.0.23.Final] at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:89) ~[MessageToMessageEncoder.class:4.0.23.Final] ... 36 more sty 28, 2017 5:52:44 PM io.netty.channel.embedded.EmbeddedChannel recordException WARNING: More than one exception was raised. Will report only the first one and log others. io.netty.handler.codec.EncoderException: java.lang.NullPointerException at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:107) 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:240) at lukas2005.idea.caps.IItemStackData$DefaultImpl.setWeight(IItemStackData.java:67) at lukas2005.idea.caps.IItemStackData$DefaultImpl.<init>(IItemStackData.java:47) at lukas2005.idea.caps.IItemStackData$Provider.<init>(IItemStackData.java:91) at lukas2005.idea.EventHooks.onItemAttachCap(EventHooks.java:36) at net.minecraftforge.fml.common.eventhandler.ASMEventHandler_6_EventHooks_onItemAttachCap_Item.invoke(.dynamic) at net.minecraftforge.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:90) at net.minecraftforge.fml.common.eventhandler.EventBus.post(EventBus.java:185) at net.minecraftforge.event.ForgeEventFactory.gatherCapabilities(ForgeEventFactory.java:565) at net.minecraftforge.event.ForgeEventFactory.gatherCapabilities(ForgeEventFactory.java:555) at net.minecraft.item.ItemStack.setItem(ItemStack.java:1084) at net.minecraft.item.ItemStack.readFromNBT(ItemStack.java:218) at net.minecraft.item.ItemStack.loadItemStackFromNBT(ItemStack.java:113) at net.minecraft.entity.item.EntityItem.readEntityFromNBT(EntityItem.java:391) at net.minecraft.entity.Entity.readFromNBT(Entity.java:1922) at net.minecraft.entity.EntityList.createEntityFromNBT(EntityList.java:187) at net.minecraft.world.chunk.storage.AnvilChunkLoader.createEntityFromNBT(AnvilChunkLoader.java:626) at net.minecraft.world.chunk.storage.AnvilChunkLoader.readChunkEntity(AnvilChunkLoader.java:553) at net.minecraft.world.chunk.storage.AnvilChunkLoader.loadEntities(AnvilChunkLoader.java:503) at net.minecraftforge.common.chunkio.ChunkIOProvider.syncCallback(ChunkIOProvider.java:96) at net.minecraftforge.common.chunkio.ChunkIOExecutor.syncChunkLoad(ChunkIOExecutor.java:94) at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:121) at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:92) at net.minecraft.world.gen.ChunkProviderServer.provideChunk(ChunkProviderServer.java:138) at net.minecraft.server.MinecraftServer.initialWorldChunkLoad(MinecraftServer.java:336) at net.minecraft.server.integrated.IntegratedServer.loadAllWorlds(IntegratedServer.java:107) at net.minecraft.server.integrated.IntegratedServer.startServer(IntegratedServer.java:124) at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:496) at java.lang.Thread.run(Unknown Source) Caused by: java.lang.NullPointerException at lukas2005.idea.network.packets.ItemStackDataMessage.toBytes(ItemStackDataMessage.java:30) at net.minecraftforge.fml.common.network.simpleimpl.SimpleIndexedCodec.encodeInto(SimpleIndexedCodec.java:30) at net.minecraftforge.fml.common.network.simpleimpl.SimpleIndexedCodec.encodeInto(SimpleIndexedCodec.java:26) at net.minecraftforge.fml.common.network.FMLIndexedMessageToMessageCodec.encode(FMLIndexedMessageToMessageCodec.java:73) at io.netty.handler.codec.MessageToMessageCodec$1.encode(MessageToMessageCodec.java:67) at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:89) ... 36 more [17:52:44] [server thread/ERROR] [FML]: FMLIndexedMessageCodec exception caught io.netty.handler.codec.EncoderException: java.lang.NullPointerException at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:107) ~[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:240) [simpleNetworkWrapper.class:?] at lukas2005.idea.caps.IItemStackData$DefaultImpl.setWeight(IItemStackData.java:67) [iItemStackData$DefaultImpl.class:?] at lukas2005.idea.caps.IItemStackData$DefaultImpl.<init>(IItemStackData.java:47) [iItemStackData$DefaultImpl.class:?] at lukas2005.idea.caps.IItemStackData$Provider.<init>(IItemStackData.java:91) [iItemStackData$Provider.class:?] at lukas2005.idea.EventHooks.onItemAttachCap(EventHooks.java:36) [EventHooks.class:?] at net.minecraftforge.fml.common.eventhandler.ASMEventHandler_6_EventHooks_onItemAttachCap_Item.invoke(.dynamic) [?:?] at net.minecraftforge.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:90) [ASMEventHandler.class:?] at net.minecraftforge.fml.common.eventhandler.EventBus.post(EventBus.java:185) [EventBus.class:?] at net.minecraftforge.event.ForgeEventFactory.gatherCapabilities(ForgeEventFactory.java:565) [ForgeEventFactory.class:?] at net.minecraftforge.event.ForgeEventFactory.gatherCapabilities(ForgeEventFactory.java:555) [ForgeEventFactory.class:?] at net.minecraft.item.ItemStack.setItem(ItemStack.java:1084) [itemStack.class:?] at net.minecraft.item.ItemStack.readFromNBT(ItemStack.java:218) [itemStack.class:?] at net.minecraft.item.ItemStack.loadItemStackFromNBT(ItemStack.java:113) [itemStack.class:?] at net.minecraft.entity.item.EntityItem.readEntityFromNBT(EntityItem.java:391) [EntityItem.class:?] at net.minecraft.entity.Entity.readFromNBT(Entity.java:1922) [Entity.class:?] at net.minecraft.entity.EntityList.createEntityFromNBT(EntityList.java:187) [EntityList.class:?] at net.minecraft.world.chunk.storage.AnvilChunkLoader.createEntityFromNBT(AnvilChunkLoader.java:626) [AnvilChunkLoader.class:?] at net.minecraft.world.chunk.storage.AnvilChunkLoader.readChunkEntity(AnvilChunkLoader.java:553) [AnvilChunkLoader.class:?] at net.minecraft.world.chunk.storage.AnvilChunkLoader.loadEntities(AnvilChunkLoader.java:503) [AnvilChunkLoader.class:?] at net.minecraftforge.common.chunkio.ChunkIOProvider.syncCallback(ChunkIOProvider.java:96) [ChunkIOProvider.class:?] at net.minecraftforge.common.chunkio.ChunkIOExecutor.syncChunkLoad(ChunkIOExecutor.java:94) [ChunkIOExecutor.class:?] at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:121) [ChunkProviderServer.class:?] at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:92) [ChunkProviderServer.class:?] at net.minecraft.world.gen.ChunkProviderServer.provideChunk(ChunkProviderServer.java:138) [ChunkProviderServer.class:?] at net.minecraft.server.MinecraftServer.initialWorldChunkLoad(MinecraftServer.java:336) [MinecraftServer.class:?] at net.minecraft.server.integrated.IntegratedServer.loadAllWorlds(IntegratedServer.java:107) [integratedServer.class:?] at net.minecraft.server.integrated.IntegratedServer.startServer(IntegratedServer.java:124) [integratedServer.class:?] at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:496) [MinecraftServer.class:?] at java.lang.Thread.run(Unknown Source) [?:1.8.0_111] Caused by: java.lang.NullPointerException at lukas2005.idea.network.packets.ItemStackDataMessage.toBytes(ItemStackDataMessage.java:30) ~[itemStackDataMessage.class:?] at net.minecraftforge.fml.common.network.simpleimpl.SimpleIndexedCodec.encodeInto(SimpleIndexedCodec.java:30) ~[simpleIndexedCodec.class:?] at net.minecraftforge.fml.common.network.simpleimpl.SimpleIndexedCodec.encodeInto(SimpleIndexedCodec.java:26) ~[simpleIndexedCodec.class:?] at net.minecraftforge.fml.common.network.FMLIndexedMessageToMessageCodec.encode(FMLIndexedMessageToMessageCodec.java:73) ~[FMLIndexedMessageToMessageCodec.class:?] at io.netty.handler.codec.MessageToMessageCodec$1.encode(MessageToMessageCodec.java:67) ~[MessageToMessageCodec$1.class:4.0.23.Final] at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:89) ~[MessageToMessageEncoder.class:4.0.23.Final] ... 36 more sty 28, 2017 5:52:44 PM io.netty.channel.embedded.EmbeddedChannel recordException WARNING: More than one exception was raised. Will report only the first one and log others. io.netty.handler.codec.EncoderException: java.lang.NullPointerException at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:107) 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:240) at lukas2005.idea.caps.IItemStackData$DefaultImpl.setWeight(IItemStackData.java:67) at lukas2005.idea.caps.IItemStackData$DefaultImpl.<init>(IItemStackData.java:47) at lukas2005.idea.caps.IItemStackData$Provider.<init>(IItemStackData.java:91) at lukas2005.idea.EventHooks.onItemAttachCap(EventHooks.java:36) at net.minecraftforge.fml.common.eventhandler.ASMEventHandler_6_EventHooks_onItemAttachCap_Item.invoke(.dynamic) at net.minecraftforge.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:90) at net.minecraftforge.fml.common.eventhandler.EventBus.post(EventBus.java:185) at net.minecraftforge.event.ForgeEventFactory.gatherCapabilities(ForgeEventFactory.java:565) at net.minecraftforge.event.ForgeEventFactory.gatherCapabilities(ForgeEventFactory.java:555) at net.minecraft.item.ItemStack.setItem(ItemStack.java:1084) at net.minecraft.item.ItemStack.readFromNBT(ItemStack.java:218) at net.minecraft.item.ItemStack.loadItemStackFromNBT(ItemStack.java:113) at net.minecraft.entity.item.EntityItem.readEntityFromNBT(EntityItem.java:391) at net.minecraft.entity.Entity.readFromNBT(Entity.java:1922) at net.minecraft.entity.EntityList.createEntityFromNBT(EntityList.java:187) at net.minecraft.world.chunk.storage.AnvilChunkLoader.createEntityFromNBT(AnvilChunkLoader.java:626) at net.minecraft.world.chunk.storage.AnvilChunkLoader.readChunkEntity(AnvilChunkLoader.java:553) at net.minecraft.world.chunk.storage.AnvilChunkLoader.loadEntities(AnvilChunkLoader.java:503) at net.minecraftforge.common.chunkio.ChunkIOProvider.syncCallback(ChunkIOProvider.java:96) at net.minecraftforge.common.chunkio.ChunkIOExecutor.syncChunkLoad(ChunkIOExecutor.java:94) at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:121) at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:92) at net.minecraft.world.gen.ChunkProviderServer.provideChunk(ChunkProviderServer.java:138) at net.minecraft.server.MinecraftServer.initialWorldChunkLoad(MinecraftServer.java:336) at net.minecraft.server.integrated.IntegratedServer.loadAllWorlds(IntegratedServer.java:107) at net.minecraft.server.integrated.IntegratedServer.startServer(IntegratedServer.java:124) at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:496) at java.lang.Thread.run(Unknown Source) Caused by: java.lang.NullPointerException at lukas2005.idea.network.packets.ItemStackDataMessage.toBytes(ItemStackDataMessage.java:30) at net.minecraftforge.fml.common.network.simpleimpl.SimpleIndexedCodec.encodeInto(SimpleIndexedCodec.java:30) at net.minecraftforge.fml.common.network.simpleimpl.SimpleIndexedCodec.encodeInto(SimpleIndexedCodec.java:26) at net.minecraftforge.fml.common.network.FMLIndexedMessageToMessageCodec.encode(FMLIndexedMessageToMessageCodec.java:73) at io.netty.handler.codec.MessageToMessageCodec$1.encode(MessageToMessageCodec.java:67) at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:89) ... 36 more [17:52:44] [server thread/ERROR] [FML]: FMLIndexedMessageCodec exception caught io.netty.handler.codec.EncoderException: java.lang.NullPointerException at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:107) ~[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:240) [simpleNetworkWrapper.class:?] at lukas2005.idea.caps.IItemStackData$DefaultImpl.setWeight(IItemStackData.java:67) [iItemStackData$DefaultImpl.class:?] at lukas2005.idea.caps.IItemStackData$DefaultImpl.<init>(IItemStackData.java:47) [iItemStackData$DefaultImpl.class:?] at lukas2005.idea.caps.IItemStackData$Provider.<init>(IItemStackData.java:91) [iItemStackData$Provider.class:?] at lukas2005.idea.EventHooks.onItemAttachCap(EventHooks.java:36) [EventHooks.class:?] at net.minecraftforge.fml.common.eventhandler.ASMEventHandler_6_EventHooks_onItemAttachCap_Item.invoke(.dynamic) [?:?] at net.minecraftforge.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:90) [ASMEventHandler.class:?] at net.minecraftforge.fml.common.eventhandler.EventBus.post(EventBus.java:185) [EventBus.class:?] at net.minecraftforge.event.ForgeEventFactory.gatherCapabilities(ForgeEventFactory.java:565) [ForgeEventFactory.class:?] at net.minecraftforge.event.ForgeEventFactory.gatherCapabilities(ForgeEventFactory.java:555) [ForgeEventFactory.class:?] at net.minecraft.item.ItemStack.setItem(ItemStack.java:1084) [itemStack.class:?] at net.minecraft.item.ItemStack.readFromNBT(ItemStack.java:218) [itemStack.class:?] at net.minecraft.item.ItemStack.loadItemStackFromNBT(ItemStack.java:113) [itemStack.class:?] at net.minecraft.entity.item.EntityItem.readEntityFromNBT(EntityItem.java:391) [EntityItem.class:?] at net.minecraft.entity.Entity.readFromNBT(Entity.java:1922) [Entity.class:?] at net.minecraft.entity.EntityList.createEntityFromNBT(EntityList.java:187) [EntityList.class:?] at net.minecraft.world.chunk.storage.AnvilChunkLoader.createEntityFromNBT(AnvilChunkLoader.java:626) [AnvilChunkLoader.class:?] at net.minecraft.world.chunk.storage.AnvilChunkLoader.readChunkEntity(AnvilChunkLoader.java:553) [AnvilChunkLoader.class:?] at net.minecraft.world.chunk.storage.AnvilChunkLoader.loadEntities(AnvilChunkLoader.java:503) [AnvilChunkLoader.class:?] at net.minecraftforge.common.chunkio.ChunkIOProvider.syncCallback(ChunkIOProvider.java:96) [ChunkIOProvider.class:?] at net.minecraftforge.common.chunkio.ChunkIOExecutor.syncChunkLoad(ChunkIOExecutor.java:94) [ChunkIOExecutor.class:?] at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:121) [ChunkProviderServer.class:?] at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:92) [ChunkProviderServer.class:?] at net.minecraft.world.gen.ChunkProviderServer.provideChunk(ChunkProviderServer.java:138) [ChunkProviderServer.class:?] at net.minecraft.server.MinecraftServer.initialWorldChunkLoad(MinecraftServer.java:336) [MinecraftServer.class:?] at net.minecraft.server.integrated.IntegratedServer.loadAllWorlds(IntegratedServer.java:107) [integratedServer.class:?] at net.minecraft.server.integrated.IntegratedServer.startServer(IntegratedServer.java:124) [integratedServer.class:?] at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:496) [MinecraftServer.class:?] at java.lang.Thread.run(Unknown Source) [?:1.8.0_111] Caused by: java.lang.NullPointerException at lukas2005.idea.network.packets.ItemStackDataMessage.toBytes(ItemStackDataMessage.java:30) ~[itemStackDataMessage.class:?] at net.minecraftforge.fml.common.network.simpleimpl.SimpleIndexedCodec.encodeInto(SimpleIndexedCodec.java:30) ~[simpleIndexedCodec.class:?] at net.minecraftforge.fml.common.network.simpleimpl.SimpleIndexedCodec.encodeInto(SimpleIndexedCodec.java:26) ~[simpleIndexedCodec.class:?] at net.minecraftforge.fml.common.network.FMLIndexedMessageToMessageCodec.encode(FMLIndexedMessageToMessageCodec.java:73) ~[FMLIndexedMessageToMessageCodec.class:?] at io.netty.handler.codec.MessageToMessageCodec$1.encode(MessageToMessageCodec.java:67) ~[MessageToMessageCodec$1.class:4.0.23.Final] at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:89) ~[MessageToMessageEncoder.class:4.0.23.Final] ... 36 more sty 28, 2017 5:52:44 PM io.netty.channel.embedded.EmbeddedChannel recordException WARNING: More than one exception was raised. Will report only the first one and log others. io.netty.handler.codec.EncoderException: java.lang.NullPointerException at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:107) 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:240) at lukas2005.idea.caps.IItemStackData$DefaultImpl.setWeight(IItemStackData.java:67) at lukas2005.idea.caps.IItemStackData$DefaultImpl.<init>(IItemStackData.java:47) at lukas2005.idea.caps.IItemStackData$Provider.<init>(IItemStackData.java:91) at lukas2005.idea.EventHooks.onItemAttachCap(EventHooks.java:36) at net.minecraftforge.fml.common.eventhandler.ASMEventHandler_6_EventHooks_onItemAttachCap_Item.invoke(.dynamic) at net.minecraftforge.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:90) at net.minecraftforge.fml.common.eventhandler.EventBus.post(EventBus.java:185) at net.minecraftforge.event.ForgeEventFactory.gatherCapabilities(ForgeEventFactory.java:565) at net.minecraftforge.event.ForgeEventFactory.gatherCapabilities(ForgeEventFactory.java:555) at net.minecraft.item.ItemStack.setItem(ItemStack.java:1084) at net.minecraft.item.ItemStack.readFromNBT(ItemStack.java:218) at net.minecraft.item.ItemStack.loadItemStackFromNBT(ItemStack.java:113) at net.minecraft.entity.item.EntityItem.readEntityFromNBT(EntityItem.java:391) at net.minecraft.entity.Entity.readFromNBT(Entity.java:1922) at net.minecraft.entity.EntityList.createEntityFromNBT(EntityList.java:187) at net.minecraft.world.chunk.storage.AnvilChunkLoader.createEntityFromNBT(AnvilChunkLoader.java:626) at net.minecraft.world.chunk.storage.AnvilChunkLoader.readChunkEntity(AnvilChunkLoader.java:553) at net.minecraft.world.chunk.storage.AnvilChunkLoader.loadEntities(AnvilChunkLoader.java:503) at net.minecraftforge.common.chunkio.ChunkIOProvider.syncCallback(ChunkIOProvider.java:96) at net.minecraftforge.common.chunkio.ChunkIOExecutor.syncChunkLoad(ChunkIOExecutor.java:94) at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:121) at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:92) at net.minecraft.world.gen.ChunkProviderServer.provideChunk(ChunkProviderServer.java:138) at net.minecraft.server.MinecraftServer.initialWorldChunkLoad(MinecraftServer.java:336) at net.minecraft.server.integrated.IntegratedServer.loadAllWorlds(IntegratedServer.java:107) at net.minecraft.server.integrated.IntegratedServer.startServer(IntegratedServer.java:124) at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:496) at java.lang.Thread.run(Unknown Source) Caused by: java.lang.NullPointerException at lukas2005.idea.network.packets.ItemStackDataMessage.toBytes(ItemStackDataMessage.java:30) at net.minecraftforge.fml.common.network.simpleimpl.SimpleIndexedCodec.encodeInto(SimpleIndexedCodec.java:30) at net.minecraftforge.fml.common.network.simpleimpl.SimpleIndexedCodec.encodeInto(SimpleIndexedCodec.java:26) at net.minecraftforge.fml.common.network.FMLIndexedMessageToMessageCodec.encode(FMLIndexedMessageToMessageCodec.java:73) at io.netty.handler.codec.MessageToMessageCodec$1.encode(MessageToMessageCodec.java:67) at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:89) ... 36 more [17:52:44] [server thread/ERROR] [FML]: FMLIndexedMessageCodec exception caught io.netty.handler.codec.EncoderException: java.lang.NullPointerException at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:107) ~[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:240) [simpleNetworkWrapper.class:?] at lukas2005.idea.caps.IItemStackData$DefaultImpl.setWeight(IItemStackData.java:67) [iItemStackData$DefaultImpl.class:?] at lukas2005.idea.caps.IItemStackData$DefaultImpl.<init>(IItemStackData.java:47) [iItemStackData$DefaultImpl.class:?] at lukas2005.idea.caps.IItemStackData$Provider.<init>(IItemStackData.java:91) [iItemStackData$Provider.class:?] at lukas2005.idea.EventHooks.onItemAttachCap(EventHooks.java:36) [EventHooks.class:?] at net.minecraftforge.fml.common.eventhandler.ASMEventHandler_6_EventHooks_onItemAttachCap_Item.invoke(.dynamic) [?:?] at net.minecraftforge.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:90) [ASMEventHandler.class:?] at net.minecraftforge.fml.common.eventhandler.EventBus.post(EventBus.java:185) [EventBus.class:?] at net.minecraftforge.event.ForgeEventFactory.gatherCapabilities(ForgeEventFactory.java:565) [ForgeEventFactory.class:?] at net.minecraftforge.event.ForgeEventFactory.gatherCapabilities(ForgeEventFactory.java:555) [ForgeEventFactory.class:?] at net.minecraft.item.ItemStack.setItem(ItemStack.java:1084) [itemStack.class:?] at net.minecraft.item.ItemStack.readFromNBT(ItemStack.java:218) [itemStack.class:?] at net.minecraft.item.ItemStack.loadItemStackFromNBT(ItemStack.java:113) [itemStack.class:?] at net.minecraft.entity.item.EntityItem.readEntityFromNBT(EntityItem.java:391) [EntityItem.class:?] at net.minecraft.entity.Entity.readFromNBT(Entity.java:1922) [Entity.class:?] at net.minecraft.entity.EntityList.createEntityFromNBT(EntityList.java:187) [EntityList.class:?] at net.minecraft.world.chunk.storage.AnvilChunkLoader.createEntityFromNBT(AnvilChunkLoader.java:626) [AnvilChunkLoader.class:?] at net.minecraft.world.chunk.storage.AnvilChunkLoader.readChunkEntity(AnvilChunkLoader.java:553) [AnvilChunkLoader.class:?] at net.minecraft.world.chunk.storage.AnvilChunkLoader.loadEntities(AnvilChunkLoader.java:503) [AnvilChunkLoader.class:?] at net.minecraftforge.common.chunkio.ChunkIOProvider.syncCallback(ChunkIOProvider.java:96) [ChunkIOProvider.class:?] at net.minecraftforge.common.chunkio.ChunkIOExecutor.syncChunkLoad(ChunkIOExecutor.java:94) [ChunkIOExecutor.class:?] at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:121) [ChunkProviderServer.class:?] at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:92) [ChunkProviderServer.class:?] at net.minecraft.world.gen.ChunkProviderServer.provideChunk(ChunkProviderServer.java:138) [ChunkProviderServer.class:?] at net.minecraft.server.MinecraftServer.initialWorldChunkLoad(MinecraftServer.java:336) [MinecraftServer.class:?] at net.minecraft.server.integrated.IntegratedServer.loadAllWorlds(IntegratedServer.java:107) [integratedServer.class:?] at net.minecraft.server.integrated.IntegratedServer.startServer(IntegratedServer.java:124) [integratedServer.class:?] at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:496) [MinecraftServer.class:?] at java.lang.Thread.run(Unknown Source) [?:1.8.0_111] Caused by: java.lang.NullPointerException at lukas2005.idea.network.packets.ItemStackDataMessage.toBytes(ItemStackDataMessage.java:30) ~[itemStackDataMessage.class:?] at net.minecraftforge.fml.common.network.simpleimpl.SimpleIndexedCodec.encodeInto(SimpleIndexedCodec.java:30) ~[simpleIndexedCodec.class:?] at net.minecraftforge.fml.common.network.simpleimpl.SimpleIndexedCodec.encodeInto(SimpleIndexedCodec.java:26) ~[simpleIndexedCodec.class:?] at net.minecraftforge.fml.common.network.FMLIndexedMessageToMessageCodec.encode(FMLIndexedMessageToMessageCodec.java:73) ~[FMLIndexedMessageToMessageCodec.class:?] at io.netty.handler.codec.MessageToMessageCodec$1.encode(MessageToMessageCodec.java:67) ~[MessageToMessageCodec$1.class:4.0.23.Final] at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:89) ~[MessageToMessageEncoder.class:4.0.23.Final] ... 36 more sty 28, 2017 5:52:44 PM io.netty.channel.embedded.EmbeddedChannel recordException WARNING: More than one exception was raised. Will report only the first one and log others. io.netty.handler.codec.EncoderException: java.lang.NullPointerException at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:107) 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:240) at lukas2005.idea.caps.IItemStackData$DefaultImpl.setWeight(IItemStackData.java:67) at lukas2005.idea.caps.IItemStackData$DefaultImpl.<init>(IItemStackData.java:47) at lukas2005.idea.caps.IItemStackData$Provider.<init>(IItemStackData.java:91) at lukas2005.idea.EventHooks.onItemAttachCap(EventHooks.java:36) at net.minecraftforge.fml.common.eventhandler.ASMEventHandler_6_EventHooks_onItemAttachCap_Item.invoke(.dynamic) at net.minecraftforge.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:90) at net.minecraftforge.fml.common.eventhandler.EventBus.post(EventBus.java:185) at net.minecraftforge.event.ForgeEventFactory.gatherCapabilities(ForgeEventFactory.java:565) at net.minecraftforge.event.ForgeEventFactory.gatherCapabilities(ForgeEventFactory.java:555) at net.minecraft.item.ItemStack.setItem(ItemStack.java:1084) at net.minecraft.item.ItemStack.readFromNBT(ItemStack.java:218) at net.minecraft.item.ItemStack.loadItemStackFromNBT(ItemStack.java:113) at net.minecraft.entity.item.EntityItem.readEntityFromNBT(EntityItem.java:391) at net.minecraft.entity.Entity.readFromNBT(Entity.java:1922) at net.minecraft.entity.EntityList.createEntityFromNBT(EntityList.java:187) at net.minecraft.world.chunk.storage.AnvilChunkLoader.createEntityFromNBT(AnvilChunkLoader.java:626) at net.minecraft.world.chunk.storage.AnvilChunkLoader.readChunkEntity(AnvilChunkLoader.java:553) at net.minecraft.world.chunk.storage.AnvilChunkLoader.loadEntities(AnvilChunkLoader.java:503) at net.minecraftforge.common.chunkio.ChunkIOProvider.syncCallback(ChunkIOProvider.java:96) at net.minecraftforge.common.chunkio.ChunkIOExecutor.syncChunkLoad(ChunkIOExecutor.java:94) at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:121) at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:92) at net.minecraft.world.gen.ChunkProviderServer.provideChunk(ChunkProviderServer.java:138) at net.minecraft.server.MinecraftServer.initialWorldChunkLoad(MinecraftServer.java:336) at net.minecraft.server.integrated.IntegratedServer.loadAllWorlds(IntegratedServer.java:107) at net.minecraft.server.integrated.IntegratedServer.startServer(IntegratedServer.java:124) at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:496) at java.lang.Thread.run(Unknown Source) Caused by: java.lang.NullPointerException at lukas2005.idea.network.packets.ItemStackDataMessage.toBytes(ItemStackDataMessage.java:30) at net.minecraftforge.fml.common.network.simpleimpl.SimpleIndexedCodec.encodeInto(SimpleIndexedCodec.java:30) at net.minecraftforge.fml.common.network.simpleimpl.SimpleIndexedCodec.encodeInto(SimpleIndexedCodec.java:26) at net.minecraftforge.fml.common.network.FMLIndexedMessageToMessageCodec.encode(FMLIndexedMessageToMessageCodec.java:73) at io.netty.handler.codec.MessageToMessageCodec$1.encode(MessageToMessageCodec.java:67) at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:89) ... 36 more [17:52:44] [server thread/ERROR] [FML]: FMLIndexedMessageCodec exception caught io.netty.handler.codec.EncoderException: java.lang.NullPointerException at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:107) ~[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:240) [simpleNetworkWrapper.class:?] at lukas2005.idea.caps.IItemStackData$DefaultImpl.setWeight(IItemStackData.java:67) [iItemStackData$DefaultImpl.class:?] at lukas2005.idea.caps.IItemStackData$DefaultImpl.<init>(IItemStackData.java:47) [iItemStackData$DefaultImpl.class:?] at lukas2005.idea.caps.IItemStackData$Provider.<init>(IItemStackData.java:91) [iItemStackData$Provider.class:?] at lukas2005.idea.EventHooks.onItemAttachCap(EventHooks.java:36) [EventHooks.class:?] at net.minecraftforge.fml.common.eventhandler.ASMEventHandler_6_EventHooks_onItemAttachCap_Item.invoke(.dynamic) [?:?] at net.minecraftforge.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:90) [ASMEventHandler.class:?] at net.minecraftforge.fml.common.eventhandler.EventBus.post(EventBus.java:185) [EventBus.class:?] at net.minecraftforge.event.ForgeEventFactory.gatherCapabilities(ForgeEventFactory.java:565) [ForgeEventFactory.class:?] at net.minecraftforge.event.ForgeEventFactory.gatherCapabilities(ForgeEventFactory.java:555) [ForgeEventFactory.class:?] at net.minecraft.item.ItemStack.setItem(ItemStack.java:1084) [itemStack.class:?] at net.minecraft.item.ItemStack.readFromNBT(ItemStack.java:218) [itemStack.class:?] at net.minecraft.item.ItemStack.loadItemStackFromNBT(ItemStack.java:113) [itemStack.class:?] at net.minecraft.entity.item.EntityItem.readEntityFromNBT(EntityItem.java:391) [EntityItem.class:?] at net.minecraft.entity.Entity.readFromNBT(Entity.java:1922) [Entity.class:?] at net.minecraft.entity.EntityList.createEntityFromNBT(EntityList.java:187) [EntityList.class:?] at net.minecraft.world.chunk.storage.AnvilChunkLoader.createEntityFromNBT(AnvilChunkLoader.java:626) [AnvilChunkLoader.class:?] at net.minecraft.world.chunk.storage.AnvilChunkLoader.readChunkEntity(AnvilChunkLoader.java:553) [AnvilChunkLoader.class:?] at net.minecraft.world.chunk.storage.AnvilChunkLoader.loadEntities(AnvilChunkLoader.java:503) [AnvilChunkLoader.class:?] at net.minecraftforge.common.chunkio.ChunkIOProvider.syncCallback(ChunkIOProvider.java:96) [ChunkIOProvider.class:?] at net.minecraftforge.common.chunkio.ChunkIOExecutor.syncChunkLoad(ChunkIOExecutor.java:94) [ChunkIOExecutor.class:?] at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:121) [ChunkProviderServer.class:?] at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:92) [ChunkProviderServer.class:?] at net.minecraft.world.gen.ChunkProviderServer.provideChunk(ChunkProviderServer.java:138) [ChunkProviderServer.class:?] at net.minecraft.server.MinecraftServer.initialWorldChunkLoad(MinecraftServer.java:336) [MinecraftServer.class:?] at net.minecraft.server.integrated.IntegratedServer.loadAllWorlds(IntegratedServer.java:107) [integratedServer.class:?] at net.minecraft.server.integrated.IntegratedServer.startServer(IntegratedServer.java:124) [integratedServer.class:?] at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:496) [MinecraftServer.class:?] at java.lang.Thread.run(Unknown Source) [?:1.8.0_111] Caused by: java.lang.NullPointerException at lukas2005.idea.network.packets.ItemStackDataMessage.toBytes(ItemStackDataMessage.java:30) ~[itemStackDataMessage.class:?] at net.minecraftforge.fml.common.network.simpleimpl.SimpleIndexedCodec.encodeInto(SimpleIndexedCodec.java:30) ~[simpleIndexedCodec.class:?] at net.minecraftforge.fml.common.network.simpleimpl.SimpleIndexedCodec.encodeInto(SimpleIndexedCodec.java:26) ~[simpleIndexedCodec.class:?] at net.minecraftforge.fml.common.network.FMLIndexedMessageToMessageCodec.encode(FMLIndexedMessageToMessageCodec.java:73) ~[FMLIndexedMessageToMessageCodec.class:?] at io.netty.handler.codec.MessageToMessageCodec$1.encode(MessageToMessageCodec.java:67) ~[MessageToMessageCodec$1.class:4.0.23.Final] at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:89) ~[MessageToMessageEncoder.class:4.0.23.Final] ... 36 more sty 28, 2017 5:52:44 PM io.netty.channel.embedded.EmbeddedChannel recordException WARNING: More than one exception was raised. Will report only the first one and log others. io.netty.handler.codec.EncoderException: java.lang.NullPointerException at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:107) 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:240) at lukas2005.idea.caps.IItemStackData$DefaultImpl.setWeight(IItemStackData.java:67) at lukas2005.idea.caps.IItemStackData$DefaultImpl.<init>(IItemStackData.java:47) at lukas2005.idea.caps.IItemStackData$Provider.<init>(IItemStackData.java:91) at lukas2005.idea.EventHooks.onItemAttachCap(EventHooks.java:36) at net.minecraftforge.fml.common.eventhandler.ASMEventHandler_6_EventHooks_onItemAttachCap_Item.invoke(.dynamic) at net.minecraftforge.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:90) at net.minecraftforge.fml.common.eventhandler.EventBus.post(EventBus.java:185) at net.minecraftforge.event.ForgeEventFactory.gatherCapabilities(ForgeEventFactory.java:565) at net.minecraftforge.event.ForgeEventFactory.gatherCapabilities(ForgeEventFactory.java:555) at net.minecraft.item.ItemStack.setItem(ItemStack.java:1084) at net.minecraft.item.ItemStack.readFromNBT(ItemStack.java:218) at net.minecraft.item.ItemStack.loadItemStackFromNBT(ItemStack.java:113) at net.minecraft.entity.item.EntityItem.readEntityFromNBT(EntityItem.java:391) at net.minecraft.entity.Entity.readFromNBT(Entity.java:1922) at net.minecraft.entity.EntityList.createEntityFromNBT(EntityList.java:187) at net.minecraft.world.chunk.storage.AnvilChunkLoader.createEntityFromNBT(AnvilChunkLoader.java:626) at net.minecraft.world.chunk.storage.AnvilChunkLoader.readChunkEntity(AnvilChunkLoader.java:553) at net.minecraft.world.chunk.storage.AnvilChunkLoader.loadEntities(AnvilChunkLoader.java:503) at net.minecraftforge.common.chunkio.ChunkIOProvider.syncCallback(ChunkIOProvider.java:96) at net.minecraftforge.common.chunkio.ChunkIOExecutor.syncChunkLoad(ChunkIOExecutor.java:94) at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:121) at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:92) at net.minecraft.world.gen.ChunkProviderServer.provideChunk(ChunkProviderServer.java:138) at net.minecraft.server.MinecraftServer.initialWorldChunkLoad(MinecraftServer.java:336) at net.minecraft.server.integrated.IntegratedServer.loadAllWorlds(IntegratedServer.java:107) at net.minecraft.server.integrated.IntegratedServer.startServer(IntegratedServer.java:124) at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:496) at java.lang.Thread.run(Unknown Source) Caused by: java.lang.NullPointerException at lukas2005.idea.network.packets.ItemStackDataMessage.toBytes(ItemStackDataMessage.java:30) at net.minecraftforge.fml.common.network.simpleimpl.SimpleIndexedCodec.encodeInto(SimpleIndexedCodec.java:30) at net.minecraftforge.fml.common.network.simpleimpl.SimpleIndexedCodec.encodeInto(SimpleIndexedCodec.java:26) at net.minecraftforge.fml.common.network.FMLIndexedMessageToMessageCodec.encode(FMLIndexedMessageToMessageCodec.java:73) at io.netty.handler.codec.MessageToMessageCodec$1.encode(MessageToMessageCodec.java:67) at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:89) ... 36 more [17:52:44] [server thread/ERROR] [FML]: Fatal errors were detected during the transition from SERVER_ABOUT_TO_START to SERVER_STARTING. Loading cannot continue [17:52:44] [server thread/ERROR] [FML]: States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored UCHIJAAA mcp{9.19} [Minecraft Coder Pack] (minecraft.jar) UCHIJAAA FML{8.0.99.99} [Forge Mod Loader] (forgeSrc-1.10.2-12.18.2.2123.jar) UCHIJAAE Forge{12.18.2.2123} [Minecraft Forge] (forgeSrc-1.10.2-12.18.2.2123.jar) UCHIJAAA idea{1.0.0} [Minecraft IDEA Mod] (bin) [17:52:44] [server thread/ERROR] [FML]: The following problems were captured during this phase [17:52:44] [server thread/ERROR] [FML]: Caught exception from Forge java.lang.NullPointerException at lukas2005.idea.caps.IItemStackData$Storage.writeNBT(IItemStackData.java:27) ~[bin/:?] at lukas2005.idea.caps.IItemStackData$Storage.writeNBT(IItemStackData.java:1) ~[bin/:?] at lukas2005.idea.caps.IItemStackData$Provider.serializeNBT(IItemStackData.java:114) ~[bin/:?] at lukas2005.idea.caps.IItemStackData$Provider.serializeNBT(IItemStackData.java:1) ~[bin/:?] at net.minecraftforge.common.capabilities.CapabilityDispatcher.serializeNBT(CapabilityDispatcher.java:121) ~[forgeSrc-1.10.2-12.18.2.2123.jar:?] at net.minecraft.item.ItemStack.writeToNBT(ItemStack.java:205) ~[forgeSrc-1.10.2-12.18.2.2123.jar:?] at net.minecraft.item.ItemStack.getTextComponent(ItemStack.java:1107) ~[forgeSrc-1.10.2-12.18.2.2123.jar:?] at net.minecraft.stats.StatList.initMiningStats(StatList.java:194) ~[forgeSrc-1.10.2-12.18.2.2123.jar:?] at net.minecraft.stats.StatList.reinit(StatList.java:355) ~[forgeSrc-1.10.2-12.18.2.2123.jar:?] at net.minecraftforge.common.ForgeModContainer.mappingChanged(ForgeModContainer.java:471) ~[forgeSrc-1.10.2-12.18.2.2123.jar:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_111] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_111] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_111] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_111] at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) ~[guava-17.0.jar:?] at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) ~[guava-17.0.jar:?] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) ~[guava-17.0.jar:?] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) ~[guava-17.0.jar:?] at com.google.common.eventbus.EventBus.post(EventBus.java:275) ~[guava-17.0.jar:?] at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:239) ~[LoadController.class:?] at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:217) [LoadController.class:?] at net.minecraftforge.fml.common.Loader.fireRemapEvent(Loader.java:1049) [Loader.class:?] at net.minecraftforge.fml.common.registry.PersistentRegistryManager.injectSnapshot(PersistentRegistryManager.java:359) ~[PersistentRegistryManager.class:?] at net.minecraftforge.fml.common.FMLContainer.readData(FMLContainer.java:327) ~[FMLContainer.class:?] at net.minecraftforge.fml.common.FMLCommonHandler.handleWorldDataLoad(FMLCommonHandler.java:418) [FMLCommonHandler.class:?] at net.minecraft.world.storage.SaveFormatOld.loadAndFix(SaveFormatOld.java:125) ~[saveFormatOld.class:?] at net.minecraft.world.storage.SaveHandler.loadWorldInfo(SaveHandler.java:140) ~[saveHandler.class:?] at net.minecraft.server.integrated.IntegratedServer.loadAllWorlds(IntegratedServer.java:75) ~[integratedServer.class:?] at net.minecraft.server.integrated.IntegratedServer.startServer(IntegratedServer.java:124) [integratedServer.class:?] at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:496) [MinecraftServer.class:?] at java.lang.Thread.run(Unknown Source) [?:1.8.0_111] [17:52:44] [server thread/ERROR] [FML]: A fatal exception occurred during the server starting event java.lang.NullPointerException at lukas2005.idea.caps.IItemStackData$Storage.writeNBT(IItemStackData.java:27) ~[bin/:?] at lukas2005.idea.caps.IItemStackData$Storage.writeNBT(IItemStackData.java:1) ~[bin/:?] at lukas2005.idea.caps.IItemStackData$Provider.serializeNBT(IItemStackData.java:114) ~[bin/:?] at lukas2005.idea.caps.IItemStackData$Provider.serializeNBT(IItemStackData.java:1) ~[bin/:?] at net.minecraftforge.common.capabilities.CapabilityDispatcher.serializeNBT(CapabilityDispatcher.java:121) ~[forgeSrc-1.10.2-12.18.2.2123.jar:?] at net.minecraft.item.ItemStack.writeToNBT(ItemStack.java:205) ~[forgeSrc-1.10.2-12.18.2.2123.jar:?] at net.minecraft.item.ItemStack.getTextComponent(ItemStack.java:1107) ~[forgeSrc-1.10.2-12.18.2.2123.jar:?] at net.minecraft.stats.StatList.initMiningStats(StatList.java:194) ~[forgeSrc-1.10.2-12.18.2.2123.jar:?] at net.minecraft.stats.StatList.reinit(StatList.java:355) ~[forgeSrc-1.10.2-12.18.2.2123.jar:?] at net.minecraftforge.common.ForgeModContainer.mappingChanged(ForgeModContainer.java:471) ~[forgeSrc-1.10.2-12.18.2.2123.jar:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_111] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_111] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_111] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_111] at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) ~[guava-17.0.jar:?] at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) ~[guava-17.0.jar:?] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) ~[guava-17.0.jar:?] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) ~[guava-17.0.jar:?] at com.google.common.eventbus.EventBus.post(EventBus.java:275) ~[guava-17.0.jar:?] at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:239) ~[LoadController.class:?] at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:217) ~[LoadController.class:?] at net.minecraftforge.fml.common.Loader.fireRemapEvent(Loader.java:1049) [Loader.class:?] at net.minecraftforge.fml.common.registry.PersistentRegistryManager.injectSnapshot(PersistentRegistryManager.java:359) ~[PersistentRegistryManager.class:?] at net.minecraftforge.fml.common.FMLContainer.readData(FMLContainer.java:327) ~[FMLContainer.class:?] at net.minecraftforge.fml.common.FMLCommonHandler.handleWorldDataLoad(FMLCommonHandler.java:418) [FMLCommonHandler.class:?] at net.minecraft.world.storage.SaveFormatOld.loadAndFix(SaveFormatOld.java:125) ~[saveFormatOld.class:?] at net.minecraft.world.storage.SaveHandler.loadWorldInfo(SaveHandler.java:140) ~[saveHandler.class:?] at net.minecraft.server.integrated.IntegratedServer.loadAllWorlds(IntegratedServer.java:75) ~[integratedServer.class:?] at net.minecraft.server.integrated.IntegratedServer.startServer(IntegratedServer.java:124) [integratedServer.class:?] at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:496) [MinecraftServer.class:?] at java.lang.Thread.run(Unknown Source) [?:1.8.0_111] [17:52:44] [server thread/INFO]: Stopping server [17:52:44] [server thread/INFO]: Saving players [17:52:44] [server thread/INFO]: Saving worlds [17:52:44] [server thread/INFO]: Saving chunks for level 'New World'/Overworld [17:52:45] [server thread/INFO]: Saving chunks for level 'New World'/Nether [17:52:45] [server thread/INFO]: Saving chunks for level 'New World'/The End [17:52:45] [server thread/INFO] [FML]: Unloading dimension 0 [17:52:45] [server thread/INFO] [FML]: Unloading dimension -1 [17:52:45] [server thread/INFO] [FML]: Unloading dimension 1 [17:52:45] [server thread/ERROR] [FML]: FMLIndexedMessageCodec exception caught io.netty.handler.codec.EncoderException: java.lang.NullPointerException at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:107) ~[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:240) [simpleNetworkWrapper.class:?] at lukas2005.idea.caps.IItemStackData$DefaultImpl.setWeight(IItemStackData.java:67) [iItemStackData$DefaultImpl.class:?] at lukas2005.idea.caps.IItemStackData$DefaultImpl.<init>(IItemStackData.java:47) [iItemStackData$DefaultImpl.class:?] at lukas2005.idea.caps.IItemStackData$Provider.<init>(IItemStackData.java:91) [iItemStackData$Provider.class:?] at lukas2005.idea.EventHooks.onItemAttachCap(EventHooks.java:36) [EventHooks.class:?] at net.minecraftforge.fml.common.eventhandler.ASMEventHandler_6_EventHooks_onItemAttachCap_Item.invoke(.dynamic) [?:?] at net.minecraftforge.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:90) [ASMEventHandler.class:?] at net.minecraftforge.fml.common.eventhandler.EventBus.post(EventBus.java:185) [EventBus.class:?] at net.minecraftforge.event.ForgeEventFactory.gatherCapabilities(ForgeEventFactory.java:565) [ForgeEventFactory.class:?] at net.minecraftforge.event.ForgeEventFactory.gatherCapabilities(ForgeEventFactory.java:555) [ForgeEventFactory.class:?] at net.minecraft.item.ItemStack.setItem(ItemStack.java:1084) [itemStack.class:?] at net.minecraft.item.ItemStack.<init>(ItemStack.java:100) [itemStack.class:?] at net.minecraft.item.ItemStack.<init>(ItemStack.java:96) [itemStack.class:?] at net.minecraft.item.ItemStack.<init>(ItemStack.java:83) [itemStack.class:?] at net.minecraft.item.ItemStack.<init>(ItemStack.java:78) [itemStack.class:?] at net.minecraft.item.ItemStack.<init>(ItemStack.java:73) [itemStack.class:?] at net.minecraft.stats.StatList.initMiningStats(StatList.java:194) [statList.class:?] at net.minecraft.stats.StatList.reinit(StatList.java:355) [statList.class:?] at net.minecraftforge.common.ForgeModContainer.mappingChanged(ForgeModContainer.java:471) [ForgeModContainer.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_111] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_111] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_111] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_111] at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) [guava-17.0.jar:?] at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) [guava-17.0.jar:?] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) [guava-17.0.jar:?] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) [guava-17.0.jar:?] at com.google.common.eventbus.EventBus.post(EventBus.java:275) [guava-17.0.jar:?] at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:239) [LoadController.class:?] at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:217) [LoadController.class:?] at net.minecraftforge.fml.common.Loader.fireRemapEvent(Loader.java:1049) [Loader.class:?] at net.minecraftforge.fml.common.registry.PersistentRegistryManager.revertToFrozen(PersistentRegistryManager.java:488) [PersistentRegistryManager.class:?] at net.minecraftforge.fml.common.Loader.serverStopped(Loader.java:905) [Loader.class:?] at net.minecraftforge.fml.common.FMLCommonHandler.handleServerStopped(FMLCommonHandler.java:498) [FMLCommonHandler.class:?] at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:598) [MinecraftServer.class:?] at java.lang.Thread.run(Unknown Source) [?:1.8.0_111] Caused by: java.lang.NullPointerException at lukas2005.idea.network.packets.ItemStackDataMessage.toBytes(ItemStackDataMessage.java:30) ~[itemStackDataMessage.class:?] at net.minecraftforge.fml.common.network.simpleimpl.SimpleIndexedCodec.encodeInto(SimpleIndexedCodec.java:30) ~[simpleIndexedCodec.class:?] at net.minecraftforge.fml.common.network.simpleimpl.SimpleIndexedCodec.encodeInto(SimpleIndexedCodec.java:26) ~[simpleIndexedCodec.class:?] at net.minecraftforge.fml.common.network.FMLIndexedMessageToMessageCodec.encode(FMLIndexedMessageToMessageCodec.java:73) ~[FMLIndexedMessageToMessageCodec.class:?] at io.netty.handler.codec.MessageToMessageCodec$1.encode(MessageToMessageCodec.java:67) ~[MessageToMessageCodec$1.class:4.0.23.Final] at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:89) ~[MessageToMessageEncoder.class:4.0.23.Final] ... 43 more sty 28, 2017 5:52:45 PM io.netty.channel.embedded.EmbeddedChannel recordException WARNING: More than one exception was raised. Will report only the first one and log others. io.netty.handler.codec.EncoderException: java.lang.NullPointerException at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:107) 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:240) at lukas2005.idea.caps.IItemStackData$DefaultImpl.setWeight(IItemStackData.java:67) at lukas2005.idea.caps.IItemStackData$DefaultImpl.<init>(IItemStackData.java:47) at lukas2005.idea.caps.IItemStackData$Provider.<init>(IItemStackData.java:91) at lukas2005.idea.EventHooks.onItemAttachCap(EventHooks.java:36) at net.minecraftforge.fml.common.eventhandler.ASMEventHandler_6_EventHooks_onItemAttachCap_Item.invoke(.dynamic) at net.minecraftforge.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:90) at net.minecraftforge.fml.common.eventhandler.EventBus.post(EventBus.java:185) at net.minecraftforge.event.ForgeEventFactory.gatherCapabilities(ForgeEventFactory.java:565) at net.minecraftforge.event.ForgeEventFactory.gatherCapabilities(ForgeEventFactory.java:555) at net.minecraft.item.ItemStack.setItem(ItemStack.java:1084) at net.minecraft.item.ItemStack.<init>(ItemStack.java:100) at net.minecraft.item.ItemStack.<init>(ItemStack.java:96) at net.minecraft.item.ItemStack.<init>(ItemStack.java:83) at net.minecraft.item.ItemStack.<init>(ItemStack.java:78) at net.minecraft.item.ItemStack.<init>(ItemStack.java:73) at net.minecraft.stats.StatList.initMiningStats(StatList.java:194) at net.minecraft.stats.StatList.reinit(StatList.java:355) at net.minecraftforge.common.ForgeModContainer.mappingChanged(ForgeModContainer.java:471) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) at com.google.common.eventbus.EventBus.post(EventBus.java:275) at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:239) at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:217) at net.minecraftforge.fml.common.Loader.fireRemapEvent(Loader.java:1049) at net.minecraftforge.fml.common.registry.PersistentRegistryManager.revertToFrozen(PersistentRegistryManager.java:488) at net.minecraftforge.fml.common.Loader.serverStopped(Loader.java:905) at net.minecraftforge.fml.common.FMLCommonHandler.handleServerStopped(FMLCommonHandler.java:498) at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:598) at java.lang.Thread.run(Unknown Source) Caused by: java.lang.NullPointerException at lukas2005.idea.network.packets.ItemStackDataMessage.toBytes(ItemStackDataMessage.java:30) at net.minecraftforge.fml.common.network.simpleimpl.SimpleIndexedCodec.encodeInto(SimpleIndexedCodec.java:30) at net.minecraftforge.fml.common.network.simpleimpl.SimpleIndexedCodec.encodeInto(SimpleIndexedCodec.java:26) at net.minecraftforge.fml.common.network.FMLIndexedMessageToMessageCodec.encode(FMLIndexedMessageToMessageCodec.java:73) at io.netty.handler.codec.MessageToMessageCodec$1.encode(MessageToMessageCodec.java:67) at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:89) ... 43 more [17:52:45] [server thread/INFO] [FML]: Applying holder lookups [17:52:45] [server thread/INFO] [FML]: Holder lookups applied [17:52:45] [server thread/INFO] [FML]: The state engine was in incorrect state ERRORED and forced into state SERVER_STOPPED. Errors may have been discarded. [17:52:45] [server thread/INFO] [FML]: The state engine was in incorrect state ERRORED and forced into state AVAILABLE. Errors may have been discarded. -
[1.10.2] Extending/attaching additional data to itemstack?
lukas2005 replied to lukas2005's topic in Modder Support
how do i attach a capability to a itemstack thats inside of player inventory ?? -
So theres no esay to read and organized official docs? because i dont know where to start with that animation testing modcode
-
I want to make one of my parts slide from point A to point B
-
Hello i have a machine with "moving parts" and i would want to make them actually move. how do i do that?
-
[1.10.2] Capabilities crash Capablility#getStorage()
lukas2005 replied to lukas2005's topic in Modder Support
bump -
i also was confused about this the only way that registering creative tabs works right for me is public static CreativeTabs testtab = new CreativeTabs("testtab"){ @Override public Item getTabIconItem(){ return MyModItems.Test; } }; in main mod class at the end i dont know if in 1.11 something changed
-
Hello i am adding capabilities to my mod (i have done this before) and the game crashes when i join the game crash log: 2017-01-11 18:10:15,681 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream 2017-01-11 18:10:15,683 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream [18:10:15] [main/INFO] [GradleStart]: Extra: [] [18:10:15] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --assetsDir, C:/Users/Łukasz/.gradle/caches/minecraft/assets, --assetIndex, 1.10, --accessToken{REDACTED}, --version, 1.10.2, --tweakClass, net.minecraftforge.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker] [18:10:15] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker [18:10:15] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker [18:10:15] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker [18:10:15] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker [18:10:15] [main/INFO] [FML]: Forge Mod Loader version 12.18.2.2123 for Minecraft 1.10.2 loading [18:10:15] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_111, running on Windows 10:amd64:10.0, installed at C:\Program Files\Java\jre1.8.0_111 [18:10:15] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation [18:10:15] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker [18:10:15] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin [18:10:15] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin [18:10:15] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [18:10:15] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker [18:10:15] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker [18:10:15] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [18:10:15] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [18:10:16] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [18:10:16] [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work! [18:10:19] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing [18:10:19] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [18:10:19] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker [18:10:20] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker [18:10:20] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker [18:10:20] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker [18:10:20] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main} 2017-01-11 18:10:21,480 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream 2017-01-11 18:10:21,559 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream 2017-01-11 18:10:21,561 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream [18:10:22] [Client thread/INFO]: Setting user: Player376 [18:10:28] [Client thread/WARN]: Skipping bad option: lastServer: [18:10:28] [Client thread/INFO]: LWJGL Version: 2.9.4 [18:10:30] [Client thread/INFO] [sTDOUT]: [net.minecraftforge.fml.client.SplashProgress:start:221]: ---- Minecraft Crash Report ---- // My bad. Time: 11.01.17 18:10 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.10.2 Operating System: Windows 10 (amd64) version 10.0 Java Version: 1.8.0_111, Oracle Corporation Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 443267360 bytes (422 MB) / 606076928 bytes (578 MB) up to 1905262592 bytes (1817 MB) JVM Flags: 0 total; IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 FML: Loaded coremods (and transformers): GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.5.0 NVIDIA 376.19' Renderer: 'GeForce GTX 750 Ti/PCIe/SSE2' [18:10:31] [Client thread/INFO] [FML]: MinecraftForge v12.18.2.2123 Initialized [18:10:31] [Client thread/INFO] [FML]: Replaced 231 ore recipes [18:10:31] [Client thread/INFO] [FML]: Found 0 mods from the command line. Injecting into mod discoverer [18:10:31] [Client thread/INFO] [FML]: Searching D:\Programy\Deweloping\Projekty\eclipse\Java\Mod Making\IDEA-Mod\run\mods for mods [18:10:33] [Client thread/INFO] [FML]: Forge Mod Loader has identified 4 mods to load [18:10:34] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, idea] at CLIENT [18:10:34] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, idea] at SERVER [18:10:35] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Minecraft IDEA Mod [18:10:35] [Client thread/INFO] [FML]: Processing ObjectHolder annotations [18:10:35] [Client thread/INFO] [FML]: Found 423 ObjectHolder annotations [18:10:35] [Client thread/INFO] [FML]: Identifying ItemStackHolder annotations [18:10:35] [Client thread/INFO] [FML]: Found 0 ItemStackHolder annotations [18:10:35] [Client thread/INFO] [FML]: Applying holder lookups [18:10:35] [Client thread/INFO] [FML]: Holder lookups applied [18:10:35] [Client thread/INFO] [FML]: Applying holder lookups [18:10:35] [Client thread/INFO] [FML]: Holder lookups applied [18:10:35] [Client thread/INFO] [FML]: Applying holder lookups [18:10:35] [Client thread/INFO] [FML]: Holder lookups applied [18:10:35] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0 [18:10:35] [Forge Version Check/INFO] [ForgeVersionCheck]: [Forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json [18:10:35] [Client thread/INFO] [iDEA]: Pre Init! [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:air=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:stone=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:grass=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:dirt=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:cobblestone=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:planks=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:sapling=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:bedrock=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:flowing_water=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:water=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:flowing_lava=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:lava=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:sand=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:gravel=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:gold_ore=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:iron_ore=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:coal_ore=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:log=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:leaves=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:sponge=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:glass=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:lapis_ore=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:lapis_block=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:dispenser=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:sandstone=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:noteblock=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:bed=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:golden_rail=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:detector_rail=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:sticky_piston=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:web=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:tallgrass=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:deadbush=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:piston=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:piston_head=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:wool=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:piston_extension=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:yellow_flower=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:red_flower=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:brown_mushroom=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:red_mushroom=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:gold_block=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:iron_block=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:double_stone_slab=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:stone_slab=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:brick_block=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:tnt=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:bookshelf=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:mossy_cobblestone=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:obsidian=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:torch=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:fire=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:mob_spawner=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:oak_stairs=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:chest=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:redstone_wire=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:diamond_ore=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:diamond_block=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:crafting_table=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:wheat=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:farmland=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:furnace=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:lit_furnace=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:standing_sign=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:wooden_door=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:ladder=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:rail=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:stone_stairs=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:wall_sign=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:lever=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:stone_pressure_plate=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:iron_door=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:wooden_pressure_plate=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:redstone_ore=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:lit_redstone_ore=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:unlit_redstone_torch=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:redstone_torch=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:stone_button=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:snow_layer=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:ice=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:snow=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:cactus=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:clay=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:reeds=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:jukebox=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:fence=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:pumpkin=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:netherrack=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:soul_sand=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:glowstone=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:portal=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:lit_pumpkin=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:cake=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:unpowered_repeater=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:powered_repeater=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:stained_glass=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:trapdoor=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:monster_egg=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:stonebrick=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:brown_mushroom_block=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:red_mushroom_block=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:iron_bars=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:glass_pane=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:melon_block=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:pumpkin_stem=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:melon_stem=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:vine=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:fence_gate=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:brick_stairs=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:stone_brick_stairs=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:mycelium=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:waterlily=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:nether_brick=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:nether_brick_fence=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:nether_brick_stairs=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:nether_wart=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:enchanting_table=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:brewing_stand=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:cauldron=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:end_portal=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:end_portal_frame=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:end_stone=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:dragon_egg=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:redstone_lamp=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:lit_redstone_lamp=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:double_wooden_slab=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:wooden_slab=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:cocoa=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:sandstone_stairs=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:emerald_ore=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:ender_chest=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:tripwire_hook=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:tripwire=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:emerald_block=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:spruce_stairs=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:birch_stairs=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:jungle_stairs=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:command_block=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:beacon=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:cobblestone_wall=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:flower_pot=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:carrots=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:potatoes=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:wooden_button=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:skull=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:anvil=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:trapped_chest=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:light_weighted_pressure_plate=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:heavy_weighted_pressure_plate=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:unpowered_comparator=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:powered_comparator=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:daylight_detector=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:redstone_block=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:quartz_ore=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:hopper=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:quartz_block=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:quartz_stairs=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:activator_rail=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:dropper=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:stained_hardened_clay=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:stained_glass_pane=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:leaves2=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:log2=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:acacia_stairs=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:dark_oak_stairs=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:slime=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:barrier=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:iron_trapdoor=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:prismarine=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:sea_lantern=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:hay_block=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:carpet=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:hardened_clay=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:coal_block=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:packed_ice=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:double_plant=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:standing_banner=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:wall_banner=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:daylight_detector_inverted=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:red_sandstone=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:red_sandstone_stairs=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:double_stone_slab2=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:stone_slab2=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:spruce_fence_gate=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:birch_fence_gate=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:jungle_fence_gate=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:dark_oak_fence_gate=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:acacia_fence_gate=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:spruce_fence=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:birch_fence=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:jungle_fence=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:dark_oak_fence=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:acacia_fence=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:spruce_door=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:birch_door=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:jungle_door=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:acacia_door=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:dark_oak_door=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:end_rod=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:chorus_plant=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:chorus_flower=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:purpur_block=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:purpur_pillar=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:purpur_stairs=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:purpur_double_slab=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:purpur_slab=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:end_bricks=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:beetroots=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:grass_path=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:end_gateway=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:repeating_command_block=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:chain_command_block=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:frosted_ice=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:magma=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:nether_wart_block=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:red_nether_brick=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:bone_block=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:structure_void=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:structure_block=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:stone=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:grass=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:dirt=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:cobblestone=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:planks=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:sapling=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:bedrock=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:sand=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:gravel=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:gold_ore=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:iron_ore=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:coal_ore=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:log=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:leaves=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:sponge=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:glass=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:lapis_ore=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:lapis_block=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:dispenser=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:sandstone=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:noteblock=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:golden_rail=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:detector_rail=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:sticky_piston=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:web=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:tallgrass=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:deadbush=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:piston=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:wool=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:yellow_flower=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:red_flower=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:brown_mushroom=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:red_mushroom=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:gold_block=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:iron_block=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:stone_slab=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:brick_block=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:tnt=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:bookshelf=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:mossy_cobblestone=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:obsidian=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:torch=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:mob_spawner=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:oak_stairs=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:chest=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:diamond_ore=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:diamond_block=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:crafting_table=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:farmland=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:furnace=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:ladder=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:rail=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:stone_stairs=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:lever=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:stone_pressure_plate=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:wooden_pressure_plate=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:redstone_ore=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:redstone_torch=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:stone_button=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:snow_layer=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:ice=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:snow=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:cactus=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:clay=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:jukebox=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:fence=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:pumpkin=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:netherrack=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:soul_sand=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:glowstone=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:lit_pumpkin=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:stained_glass=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:trapdoor=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:monster_egg=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:stonebrick=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:brown_mushroom_block=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:red_mushroom_block=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:iron_bars=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:glass_pane=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:melon_block=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:vine=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:fence_gate=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:brick_stairs=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:stone_brick_stairs=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:mycelium=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:waterlily=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:nether_brick=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:nether_brick_fence=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:nether_brick_stairs=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:enchanting_table=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:end_portal_frame=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:end_stone=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:dragon_egg=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:redstone_lamp=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:wooden_slab=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:sandstone_stairs=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:emerald_ore=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:ender_chest=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:tripwire_hook=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:emerald_block=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:spruce_stairs=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:birch_stairs=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:jungle_stairs=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:command_block=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:beacon=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:cobblestone_wall=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:wooden_button=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:anvil=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:trapped_chest=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:light_weighted_pressure_plate=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:heavy_weighted_pressure_plate=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:daylight_detector=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:redstone_block=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:quartz_ore=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:hopper=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:quartz_block=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:quartz_stairs=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:activator_rail=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:dropper=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:stained_hardened_clay=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:stained_glass_pane=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:leaves2=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:log2=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:acacia_stairs=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:dark_oak_stairs=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:slime=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:barrier=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:iron_trapdoor=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:prismarine=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:sea_lantern=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:hay_block=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:carpet=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:hardened_clay=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:coal_block=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:packed_ice=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:double_plant=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:red_sandstone=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:red_sandstone_stairs=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:stone_slab2=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:spruce_fence_gate=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:birch_fence_gate=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:jungle_fence_gate=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:dark_oak_fence_gate=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:acacia_fence_gate=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:spruce_fence=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:birch_fence=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:jungle_fence=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:dark_oak_fence=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:acacia_fence=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:end_rod=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:chorus_plant=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:chorus_flower=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:purpur_block=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:purpur_pillar=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:purpur_stairs=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:purpur_slab=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:end_bricks=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:grass_path=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:repeating_command_block=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:chain_command_block=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:magma=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:nether_wart_block=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:red_nether_brick=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:bone_block=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:structure_void=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:structure_block=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:iron_shovel=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:iron_pickaxe=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:iron_axe=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:flint_and_steel=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:apple=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:bow=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:arrow=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:coal=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:diamond=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:iron_ingot=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:gold_ingot=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:iron_sword=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:wooden_sword=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:wooden_shovel=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:wooden_pickaxe=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:wooden_axe=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:stone_sword=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:stone_shovel=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:stone_pickaxe=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:stone_axe=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:diamond_sword=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:diamond_shovel=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:diamond_pickaxe=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:diamond_axe=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:stick=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:bowl=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:mushroom_stew=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:golden_sword=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:golden_shovel=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:golden_pickaxe=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:golden_axe=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:string=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:feather=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:gunpowder=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:wooden_hoe=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:stone_hoe=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:iron_hoe=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:diamond_hoe=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:golden_hoe=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:wheat_seeds=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:wheat=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:bread=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:leather_helmet=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:leather_chestplate=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:leather_leggings=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:leather_boots=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:chainmail_helmet=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:chainmail_chestplate=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:chainmail_leggings=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:chainmail_boots=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:iron_helmet=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:iron_chestplate=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:iron_leggings=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:iron_boots=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:diamond_helmet=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:diamond_chestplate=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:diamond_leggings=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:diamond_boots=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:golden_helmet=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:golden_chestplate=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:golden_leggings=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:golden_boots=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:flint=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:porkchop=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:cooked_porkchop=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:painting=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:golden_apple=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:sign=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:wooden_door=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:bucket=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:water_bucket=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:lava_bucket=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:minecart=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:saddle=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:iron_door=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:redstone=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:snowball=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:boat=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:leather=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:milk_bucket=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:brick=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:clay_ball=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:reeds=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:paper=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:book=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:slime_ball=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:chest_minecart=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:furnace_minecart=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:egg=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:compass=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:fishing_rod=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:clock=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:glowstone_dust=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:fish=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:cooked_fish=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:dye=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:bone=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:sugar=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:cake=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:bed=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:repeater=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:cookie=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:filled_map=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:shears=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:melon=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:pumpkin_seeds=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:melon_seeds=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:beef=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:cooked_beef=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:chicken=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:cooked_chicken=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:rotten_flesh=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:ender_pearl=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:blaze_rod=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:ghast_tear=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:gold_nugget=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:nether_wart=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:potion=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:glass_bottle=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:spider_eye=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:fermented_spider_eye=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:blaze_powder=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:magma_cream=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:brewing_stand=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:cauldron=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:ender_eye=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:speckled_melon=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:spawn_egg=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:experience_bottle=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:fire_charge=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:writable_book=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:written_book=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:emerald=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:item_frame=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:flower_pot=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:carrot=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:potato=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:baked_potato=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:poisonous_potato=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:map=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:golden_carrot=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:skull=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:carrot_on_a_stick=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:nether_star=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:pumpkin_pie=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:fireworks=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:firework_charge=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:enchanted_book=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:comparator=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:netherbrick=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:quartz=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:tnt_minecart=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:hopper_minecart=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:prismarine_shard=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:prismarine_crystals=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:rabbit=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:cooked_rabbit=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:rabbit_stew=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:rabbit_foot=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:rabbit_hide=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:armor_stand=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:iron_horse_armor=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:golden_horse_armor=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:diamond_horse_armor=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:lead=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:name_tag=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:command_block_minecart=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:mutton=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:cooked_mutton=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:banner=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:end_crystal=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:spruce_door=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:birch_door=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:jungle_door=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:acacia_door=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:dark_oak_door=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:chorus_fruit=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:chorus_fruit_popped=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:beetroot=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:beetroot_seeds=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:beetroot_soup=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:dragon_breath=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:splash_potion=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:spectral_arrow=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:tipped_arrow=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:lingering_potion=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:shield=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:elytra=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:spruce_boat=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:birch_boat=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:jungle_boat=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:acacia_boat=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:dark_oak_boat=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:record_13=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:record_cat=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:record_blocks=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:record_chirp=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:record_far=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:record_mall=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:record_mellohi=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:record_stal=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:record_strad=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:record_ward=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:record_11=1.0 [18:10:36] [Client thread/INFO] [iDEA]: Weight of minecraft:record_wait=1.0 [18:10:36] [Client thread/INFO] [FML]: Applying holder lookups [18:10:36] [Client thread/INFO] [FML]: Holder lookups applied [18:10:36] [Client thread/INFO] [FML]: Injecting itemstacks [18:10:36] [Client thread/INFO] [FML]: Itemstack injection complete [18:10:36] [Forge Version Check/INFO] [ForgeVersionCheck]: [Forge] Found status: OUTDATED Target: 12.18.3.2185 [18:10:53] [sound Library Loader/INFO]: Starting up SoundSystem... [18:10:53] [Thread-8/INFO]: Initializing LWJGL OpenAL [18:10:53] [Thread-8/INFO]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) [18:10:53] [Thread-8/INFO]: OpenAL initialized. [18:10:53] [sound Library Loader/INFO]: Sound engine started [18:11:05] [Client thread/INFO] [FML]: Max texture size: 16384 [18:11:05] [Client thread/INFO]: Created: 16x16 textures-atlas [18:11:07] [Client thread/INFO] [iDEA]: Init! [18:11:07] [Client thread/INFO] [FML]: Injecting itemstacks [18:11:07] [Client thread/INFO] [FML]: Itemstack injection complete [18:11:07] [Client thread/INFO] [iDEA]: Post Init! [18:11:07] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 4 mods [18:11:07] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Minecraft IDEA Mod [18:11:15] [Client thread/INFO]: SoundSystem shutting down... [18:11:15] [Client thread/WARN]: Author: Paul Lamb, www.paulscode.com [18:11:15] [sound Library Loader/INFO]: Starting up SoundSystem... [18:11:16] [Thread-10/INFO]: Initializing LWJGL OpenAL [18:11:16] [Thread-10/INFO]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) [18:11:16] [Thread-10/INFO]: OpenAL initialized. [18:11:16] [sound Library Loader/INFO]: Sound engine started [18:11:27] [Client thread/INFO] [FML]: Max texture size: 16384 [18:11:27] [Client thread/INFO]: Created: 512x512 textures-atlas [18:11:29] [Client thread/WARN]: Skipping bad option: lastServer: [18:11:30] [Realms Notification Availability checker #1/INFO]: Could not authorize you against Realms server: Invalid session id [18:11:41] [server thread/INFO]: Starting integrated minecraft server version 1.10.2 [18:11:41] [server thread/INFO]: Generating keypair [18:11:41] [server thread/INFO] [FML]: Injecting existing block and item data into this server instance [18:11:41] [server thread/INFO] [FML]: Applying holder lookups [18:11:41] [server thread/INFO] [FML]: Holder lookups applied [18:11:41] [server thread/INFO] [FML]: Loading dimension 0 (New World) (net.minecraft.server.integrated.IntegratedServer@419c1799) [18:11:42] [server thread/INFO] [FML]: Loading dimension 1 (New World) (net.minecraft.server.integrated.IntegratedServer@419c1799) [18:11:42] [server thread/INFO] [FML]: Loading dimension -1 (New World) (net.minecraft.server.integrated.IntegratedServer@419c1799) [18:11:42] [server thread/INFO]: Preparing start region for level 0 [18:11:43] [server thread/INFO]: Preparing spawn area: 4% [18:11:44] [server thread/INFO]: Preparing spawn area: 84% [18:11:44] [server thread/INFO]: Changing view distance to 12, from 10 [18:11:46] [Netty Local Client IO #0/INFO] [FML]: Server protocol version 2 [18:11:46] [Netty Server IO #1/INFO] [FML]: Client protocol version 2 [18:11:46] [Netty Server IO #1/INFO] [FML]: Client attempting to join with 4 mods : [email protected],[email protected],[email protected],[email protected] [18:11:46] [Netty Local Client IO #0/INFO] [FML]: [Netty Local Client IO #0] Client side modded connection established [18:11:46] [server thread/INFO] [FML]: [server thread] Server side modded connection established [18:11:46] [server thread/INFO]: Player376[local:E:992ad331] logged in with entity id 335 at (-97.19285407655524, 75.0, 240.27592328210892) [18:11:46] [server thread/INFO]: Player376 joined the game [18:11:46] [server thread/ERROR] [FML]: Exception caught during firing event net.minecraftforge.fml.common.gameevent.TickEvent$PlayerTickEvent@1f3e2b6a: java.lang.NullPointerException at lukas2005.idea.caps.IPlayerData$Provider.getCapability(IPlayerData.java:114) ~[iPlayerData$Provider.class:?] at net.minecraftforge.common.capabilities.CapabilityDispatcher.getCapability(CapabilityDispatcher.java:106) ~[CapabilityDispatcher.class:?] at net.minecraft.entity.Entity.getCapability(Entity.java:3317) ~[Entity.class:?] at net.minecraft.entity.EntityLivingBase.getCapability(EntityLivingBase.java:3038) ~[EntityLivingBase.class:?] at net.minecraft.entity.player.EntityPlayer.getCapability(EntityPlayer.java:2854) ~[EntityPlayer.class:?] at lukas2005.idea.EventHooks.onPlayerTick(EventHooks.java:22) ~[EventHooks.class:?] at net.minecraftforge.fml.common.eventhandler.ASMEventHandler_7_EventHooks_onPlayerTick_PlayerTickEvent.invoke(.dynamic) ~[?:?] at net.minecraftforge.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:90) ~[ASMEventHandler.class:?] at net.minecraftforge.fml.common.eventhandler.EventBus.post(EventBus.java:185) [EventBus.class:?] at net.minecraftforge.fml.common.FMLCommonHandler.onPlayerPostTick(FMLCommonHandler.java:365) [FMLCommonHandler.class:?] at net.minecraft.entity.player.EntityPlayer.updateSize(EntityPlayer.java:408) [EntityPlayer.class:?] at net.minecraft.entity.player.EntityPlayer.onUpdate(EntityPlayer.java:318) [EntityPlayer.class:?] at net.minecraft.entity.player.EntityPlayerMP.onUpdateEntity(EntityPlayerMP.java:341) [EntityPlayerMP.class:?] at net.minecraft.network.NetHandlerPlayServer.update(NetHandlerPlayServer.java:174) [NetHandlerPlayServer.class:?] at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher$1.update(NetworkDispatcher.java:216) [NetworkDispatcher$1.class:?] at net.minecraft.network.NetworkManager.processReceivedPackets(NetworkManager.java:308) [NetworkManager.class:?] at net.minecraft.network.NetworkSystem.networkTick(NetworkSystem.java:195) [NetworkSystem.class:?] at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:806) [MinecraftServer.class:?] at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:687) [MinecraftServer.class:?] at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:156) [integratedServer.class:?] at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:536) [MinecraftServer.class:?] at java.lang.Thread.run(Unknown Source) [?:1.8.0_111] [18:11:46] [server thread/ERROR] [FML]: Index: 1 Listeners: [18:11:46] [server thread/ERROR] [FML]: 0: NORMAL [18:11:46] [server thread/ERROR] [FML]: 1: ASM: lukas2005.idea.EventHooks@63793f16 onPlayerTick(Lnet/minecraftforge/fml/common/gameevent/TickEvent$PlayerTickEvent;)V [18:11:46] [server thread/ERROR]: Encountered an unexpected exception net.minecraft.util.ReportedException: Ticking player at net.minecraft.network.NetworkSystem.networkTick(NetworkSystem.java:210) ~[NetworkSystem.class:?] at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:806) ~[MinecraftServer.class:?] at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:687) ~[MinecraftServer.class:?] at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:156) ~[integratedServer.class:?] at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:536) [MinecraftServer.class:?] at java.lang.Thread.run(Unknown Source) [?:1.8.0_111] Caused by: java.lang.NullPointerException at lukas2005.idea.caps.IPlayerData$Provider.getCapability(IPlayerData.java:114) ~[iPlayerData$Provider.class:?] at net.minecraftforge.common.capabilities.CapabilityDispatcher.getCapability(CapabilityDispatcher.java:106) ~[CapabilityDispatcher.class:?] at net.minecraft.entity.Entity.getCapability(Entity.java:3317) ~[Entity.class:?] at net.minecraft.entity.EntityLivingBase.getCapability(EntityLivingBase.java:3038) ~[EntityLivingBase.class:?] at net.minecraft.entity.player.EntityPlayer.getCapability(EntityPlayer.java:2854) ~[EntityPlayer.class:?] at lukas2005.idea.EventHooks.onPlayerTick(EventHooks.java:22) ~[EventHooks.class:?] at net.minecraftforge.fml.common.eventhandler.ASMEventHandler_7_EventHooks_onPlayerTick_PlayerTickEvent.invoke(.dynamic) ~[?:?] at net.minecraftforge.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:90) ~[ASMEventHandler.class:?] at net.minecraftforge.fml.common.eventhandler.EventBus.post(EventBus.java:185) ~[EventBus.class:?] at net.minecraftforge.fml.common.FMLCommonHandler.onPlayerPostTick(FMLCommonHandler.java:365) ~[FMLCommonHandler.class:?] at net.minecraft.entity.player.EntityPlayer.updateSize(EntityPlayer.java:408) ~[EntityPlayer.class:?] at net.minecraft.entity.player.EntityPlayer.onUpdate(EntityPlayer.java:318) ~[EntityPlayer.class:?] at net.minecraft.entity.player.EntityPlayerMP.onUpdateEntity(EntityPlayerMP.java:341) ~[EntityPlayerMP.class:?] at net.minecraft.network.NetHandlerPlayServer.update(NetHandlerPlayServer.java:174) ~[NetHandlerPlayServer.class:?] at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher$1.update(NetworkDispatcher.java:216) ~[NetworkDispatcher$1.class:?] at net.minecraft.network.NetworkManager.processReceivedPackets(NetworkManager.java:308) ~[NetworkManager.class:?] at net.minecraft.network.NetworkSystem.networkTick(NetworkSystem.java:195) ~[NetworkSystem.class:?] ... 5 more [18:11:46] [server thread/ERROR]: This crash report has been saved to: D:\Programy\Deweloping\Projekty\eclipse\Java\Mod Making\IDEA-Mod\run\.\crash-reports\crash-2017-01-11_18.11.46-server.txt [18:11:46] [server thread/INFO]: Stopping server [18:11:46] [server thread/INFO]: Saving players [18:11:46] [server thread/ERROR]: Exception stopping the server net.minecraft.util.ReportedException: Saving entity NBT at net.minecraft.entity.Entity.writeToNBT(Entity.java:1826) ~[Entity.class:?] at net.minecraft.server.integrated.IntegratedPlayerList.writePlayerData(IntegratedPlayerList.java:30) ~[integratedPlayerList.class:?] at net.minecraft.server.management.PlayerList.saveAllPlayerData(PlayerList.java:972) ~[PlayerList.class:?] at net.minecraft.server.MinecraftServer.stopServer(MinecraftServer.java:439) ~[MinecraftServer.class:?] at net.minecraft.server.integrated.IntegratedServer.stopServer(IntegratedServer.java:369) ~[integratedServer.class:?] at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:589) [MinecraftServer.class:?] at java.lang.Thread.run(Unknown Source) [?:1.8.0_111] Caused by: java.lang.NullPointerException at lukas2005.idea.caps.IPlayerData$Provider.serializeNBT(IPlayerData.java:120) ~[iPlayerData$Provider.class:?] at lukas2005.idea.caps.IPlayerData$Provider.serializeNBT(IPlayerData.java:1) ~[iPlayerData$Provider.class:?] at net.minecraftforge.common.capabilities.CapabilityDispatcher.serializeNBT(CapabilityDispatcher.java:121) ~[CapabilityDispatcher.class:?] at net.minecraft.entity.Entity.writeToNBT(Entity.java:1795) ~[Entity.class:?] ... 6 more [18:11:46] [server thread/INFO] [FML]: Applying holder lookups [18:11:46] [server thread/INFO] [FML]: Holder lookups applied [18:11:46] [server thread/INFO] [FML]: The state engine was in incorrect state SERVER_STOPPING and forced into state SERVER_STOPPED. Errors may have been discarded. [18:11:48] [Client thread/INFO] [sTDOUT]: [net.minecraft.init.Bootstrap:printToSYSOUT:649]: ---- Minecraft Crash Report ---- // I bet Cylons wouldn't have this problem. Time: 11.01.17 18:11 Description: Ticking player java.lang.NullPointerException: Ticking player at lukas2005.idea.caps.IPlayerData$Provider.getCapability(IPlayerData.java:114) at net.minecraftforge.common.capabilities.CapabilityDispatcher.getCapability(CapabilityDispatcher.java:106) at net.minecraft.entity.Entity.getCapability(Entity.java:3317) at net.minecraft.entity.EntityLivingBase.getCapability(EntityLivingBase.java:3038) at net.minecraft.entity.player.EntityPlayer.getCapability(EntityPlayer.java:2854) at lukas2005.idea.EventHooks.onPlayerTick(EventHooks.java:22) at net.minecraftforge.fml.common.eventhandler.ASMEventHandler_7_EventHooks_onPlayerTick_PlayerTickEvent.invoke(.dynamic) at net.minecraftforge.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:90) at net.minecraftforge.fml.common.eventhandler.EventBus.post(EventBus.java:185) at net.minecraftforge.fml.common.FMLCommonHandler.onPlayerPostTick(FMLCommonHandler.java:365) at net.minecraft.entity.player.EntityPlayer.updateSize(EntityPlayer.java:408) at net.minecraft.entity.player.EntityPlayer.onUpdate(EntityPlayer.java:318) at net.minecraft.entity.player.EntityPlayerMP.onUpdateEntity(EntityPlayerMP.java:341) at net.minecraft.network.NetHandlerPlayServer.update(NetHandlerPlayServer.java:174) at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher$1.update(NetworkDispatcher.java:216) at net.minecraft.network.NetworkManager.processReceivedPackets(NetworkManager.java:308) at net.minecraft.network.NetworkSystem.networkTick(NetworkSystem.java:195) at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:806) at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:687) at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:156) at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:536) at java.lang.Thread.run(Unknown Source) A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- Head -- Thread: Client thread Stacktrace: at lukas2005.idea.caps.IPlayerData$Provider.getCapability(IPlayerData.java:114) at net.minecraftforge.common.capabilities.CapabilityDispatcher.getCapability(CapabilityDispatcher.java:106) at net.minecraft.entity.Entity.getCapability(Entity.java:3317) at net.minecraft.entity.EntityLivingBase.getCapability(EntityLivingBase.java:3038) at net.minecraft.entity.player.EntityPlayer.getCapability(EntityPlayer.java:2854) at lukas2005.idea.EventHooks.onPlayerTick(EventHooks.java:22) at net.minecraftforge.fml.common.eventhandler.ASMEventHandler_7_EventHooks_onPlayerTick_PlayerTickEvent.invoke(.dynamic) at net.minecraftforge.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:90) at net.minecraftforge.fml.common.eventhandler.EventBus.post(EventBus.java:185) at net.minecraftforge.fml.common.FMLCommonHandler.onPlayerPostTick(FMLCommonHandler.java:365) at net.minecraft.entity.player.EntityPlayer.updateSize(EntityPlayer.java:408) at net.minecraft.entity.player.EntityPlayer.onUpdate(EntityPlayer.java:318) -- Player being ticked -- Details: Entity Type: null (net.minecraft.entity.player.EntityPlayerMP) Entity ID: 335 Entity Name: Player376 Entity's Exact location: -97,19, 75,00, 240,28 Entity's Block location: World: (-98,75,240), Chunk: (at 14,4,0 in -7,15; contains blocks -112,0,240 to -97,255,255), Region: (-1,0; contains chunks -32,0 to -1,31, blocks -512,0,0 to -1,255,511) Entity's Momentum: 0,00, -0,08, 0,00 Entity's Passengers: [] Entity's Vehicle: ~~ERROR~~ NullPointerException: null Stacktrace: at net.minecraft.entity.player.EntityPlayerMP.onUpdateEntity(EntityPlayerMP.java:341) at net.minecraft.network.NetHandlerPlayServer.update(NetHandlerPlayServer.java:174) at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher$1.update(NetworkDispatcher.java:216) at net.minecraft.network.NetworkManager.processReceivedPackets(NetworkManager.java:308) -- Ticking connection -- Details: Connection: net.minecraft.network.NetworkManager@341d1049 Stacktrace: at net.minecraft.network.NetworkSystem.networkTick(NetworkSystem.java:195) at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:806) at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:687) at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:156) at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:536) at java.lang.Thread.run(Unknown Source) -- System Details -- Details: Minecraft Version: 1.10.2 Operating System: Windows 10 (amd64) version 10.0 Java Version: 1.8.0_111, Oracle Corporation Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 576746424 bytes (550 MB) / 1011875840 bytes (965 MB) up to 1905262592 bytes (1817 MB) JVM Flags: 0 total; IntCache: cache: 0, tcache: 0, allocated: 12, tallocated: 94 FML: MCP 9.32 Powered by Forge 12.18.2.2123 4 mods loaded, 4 mods active States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored UCHIJAAAA mcp{9.19} [Minecraft Coder Pack] (minecraft.jar) UCHIJAAAA FML{8.0.99.99} [Forge Mod Loader] (forgeSrc-1.10.2-12.18.2.2123.jar) UCHIJAAAA Forge{12.18.2.2123} [Minecraft Forge] (forgeSrc-1.10.2-12.18.2.2123.jar) UCHIJAAAA idea{1.0.0} [Minecraft IDEA Mod] (bin) Loaded coremods (and transformers): GL info: ~~ERROR~~ RuntimeException: No OpenGL context found in the current thread. Profiler Position: N/A (disabled) Player Count: 1 / 8; [EntityPlayerMP['Player376'/335, l='New World', x=-97,19, y=75,00, z=240,28]] Type: Integrated Server (map_client.txt) Is Modded: Definitely; Client brand changed to 'fml,forge' Exception in thread "Client Shutdown Thread" [18:11:48] [Client thread/INFO] [sTDOUT]: [net.minecraft.init.Bootstrap:printToSYSOUT:649]: #@!@# Game crashed! Crash report saved to: #@!@# .\crash-reports\crash-2017-01-11_18.11.46-server.txt [18:11:48] [Client Shutdown Thread/INFO]: Stopping server [18:11:48] [Client Shutdown Thread/INFO]: Saving players [18:11:48] [Client Shutdown Thread/INFO] [sTDERR]: [java.lang.ThreadGroup:uncaughtException:-1]: net.minecraft.util.ReportedException: Saving entity NBT [18:11:48] [Client Shutdown Thread/INFO] [sTDERR]: [java.lang.ThreadGroup:uncaughtException:-1]: at net.minecraft.entity.Entity.writeToNBT(Entity.java:1826) [18:11:48] [Client Shutdown Thread/INFO] [sTDERR]: [java.lang.ThreadGroup:uncaughtException:-1]: at net.minecraft.server.integrated.IntegratedPlayerList.writePlayerData(IntegratedPlayerList.java:30) [18:11:48] [Client Shutdown Thread/INFO] [sTDERR]: [java.lang.ThreadGroup:uncaughtException:-1]: at net.minecraft.server.management.PlayerList.saveAllPlayerData(PlayerList.java:972) [18:11:48] [Client Shutdown Thread/INFO] [sTDERR]: [java.lang.ThreadGroup:uncaughtException:-1]: at net.minecraft.server.MinecraftServer.stopServer(MinecraftServer.java:439) [18:11:48] [Client Shutdown Thread/INFO] [sTDERR]: [java.lang.ThreadGroup:uncaughtException:-1]: at net.minecraft.server.integrated.IntegratedServer.stopServer(IntegratedServer.java:369) [18:11:48] [Client Shutdown Thread/INFO] [sTDERR]: [java.lang.ThreadGroup:uncaughtException:-1]: at net.minecraft.client.Minecraft.stopIntegratedServer(Minecraft.java:3019) [18:11:48] [Client Shutdown Thread/INFO] [sTDERR]: [java.lang.ThreadGroup:uncaughtException:-1]: at net.minecraft.client.main.Main$2.run(Main.java:114) [18:11:48] [Client Shutdown Thread/INFO] [sTDERR]: [java.lang.ThreadGroup:uncaughtException:-1]: Caused by: java.lang.NullPointerException [18:11:48] [Client Shutdown Thread/INFO] [sTDERR]: [java.lang.ThreadGroup:uncaughtException:-1]: at lukas2005.idea.caps.IPlayerData$Provider.serializeNBT(IPlayerData.java:120) [18:11:48] [Client Shutdown Thread/INFO] [sTDERR]: [java.lang.ThreadGroup:uncaughtException:-1]: at lukas2005.idea.caps.IPlayerData$Provider.serializeNBT(IPlayerData.java:1) [18:11:48] [Client Shutdown Thread/INFO] [sTDERR]: [java.lang.ThreadGroup:uncaughtException:-1]: at net.minecraftforge.common.capabilities.CapabilityDispatcher.serializeNBT(CapabilityDispatcher.java:121) [18:11:48] [Client Shutdown Thread/INFO] [sTDERR]: [java.lang.ThreadGroup:uncaughtException:-1]: at net.minecraft.entity.Entity.writeToNBT(Entity.java:1795) [18:11:48] [Client Shutdown Thread/INFO] [sTDERR]: [java.lang.ThreadGroup:uncaughtException:-1]: ... 6 more AL lib: (EE) alc_cleanup: 1 device not closed code: https://github.com/lukas2005/IDEA-Mod/commit/fb69dc326bfdfc182ff569cf574bd73bd72d083a
-
Hello i would want to change some code of forge but how do i do that is there a tutorial or something NOTE: i know git and GitHub
-
[1.11]Unable to craft crafting tables and sticks
lukas2005 replied to ColdusT's topic in Support & Bug Reports
theres a pull request on this (https://github.com/MinecraftForge/MinecraftForge/pull/3400#issuecomment-261299482) hope this will be fixed soon -
ok but how to do that (i'm new to guis) Since it is an inventory create a class that extends GuiContainer and a class that extends Container. Then look at vanilla for examples on what the methods do. is this what do you mean? https://github.com/lukas2005/IDEA-Mod/commit/a83ad2a0b48764333f3095d67bca07328d5d04d9 Yes, but you actually need to put information ie slots, slot interaction, etc. You should look into vanilla classes for this. ok i have found a tutorial how to do this
-
ok but how to do that (i'm new to guis) Since it is an inventory create a class that extends GuiContainer and a class that extends Container. Then look at vanilla for examples on what the methods do. is this what do you mean? https://github.com/lukas2005/IDEA-Mod/commit/a83ad2a0b48764333f3095d67bca07328d5d04d9
-
Do you mean stacksize number, because slots number doesn't make sense for me. If i understand it right, i think you want to do something similar as terrafirmacraft? Food for example cannot be stacked but has a weight instead. Maybe there is an event you can call to set the max stacksize of all items to 1. Not sure if this is even posseble. If you make your own items you can use setMaxStackSize(1) if you know the RPG games like The Witcher 3 then i want to make a inventory work like that you can stack items but depending on how much you have then if you reach limit you cant grab any more items and you are slower and i want to add a scroll bar to inventory and a counter how much you are carrying right now and what is your max