Everything posted by Melonslise
-
[1.10] [1.9.4] Entity stutter
I'm creating a custom projectile entity and everything seems to work, however the entity stutters a lot when moving. https://pastebin.com/iUWQJELe
-
[17.10] [Forge] Particles not spawning
They simply don't want to spawn. http://pastebin.com/9zRBReBF
-
[SOLVED] GUI not updating values
Thanks to everyone who helped (especially Ernio). I can't believe it. Such a stupid mistake.
-
[SOLVED] GUI not updating values
Aright, I set up this print in the handler for the message: @Override public IMessage onMessage(CurrentManaMessage message, MessageContext ctx) { EntityPlayer player = RunicInscription.proxy.getClientPlayer(); int amount = message.getCurrentMana(); System.out.println(amount); ManaProperties props = ManaProperties.get((EntityPlayer) player); props.get(player).setCurrentMana(amount); return null; } It seems that the correct values are coming through. I still don't understand why the GUI is not picking up the values.
-
[SOLVED] GUI not updating values
Well obviously because I have already debugged that. EDIT: Actually I didn't debug the updated value. I'll check that tomorrow (don't have time right now)
-
[SOLVED] GUI not updating values
Not sure if that's what you meant, but I set up a print in the IEEP under the cosumeMana() public boolean consumeMana(int amount) { if(this.currentMana >= amount) { this.setCurrentMana(this.currentMana - amount); System.out.println(currentMana); return true; } else { return false; } } seems to be working correctly (I'm not updating the repo rn)
-
[SOLVED] GUI not updating values
I'm sure that they are updated on the server since I set up prints like this in the item: ManaProperties props = ManaProperties.get(player); if (props.consumeMana(15)) { System.out.println("Player had enough mana. Do something awesome!"); } else { System.out.println("Player ran out of mana. Sad face."); props.replenishMana(); } and they are displayed correctly. And as you can see in the repo all mana modifying methods have syncMana which sends packets. I have no idea why the GUI is not updated ItemScrollFirebolt
-
[SOLVED] GUI not updating values
There are no updates. As in when the mana decreases the GUI does not follow. It stays at 30/30. e.g. an item is used with consume mana.
-
[SOLVED] GUI not updating values
Well it certainly draws "30/30" I updated the GUI and added two ints. int currentMana = props.getCurrentMana(); int maxMana = props.getMaxMana(); mc.fontRenderer.drawStringWithShadow("§1" + currentMana + "/" + maxMana, 2, 2, 1) and here's the debug: It seems that they are still there
-
[SOLVED] GUI not updating values
Will do, but let's just finish what we started. It seems that the packet is being received because the value of 'amount' is 30.
-
[SOLVED] GUI not updating values
Hey don't rage. When this thing with the GUI will be solved I will (probably/hopefully) not show my face around here again
-
[SOLVED] GUI not updating values
I don't understand how to examine the variables from here. I can't find any proper tutorial
-
[SOLVED] GUI not updating values
The debugger just allows you to modify code in real time. I don't really understand how that would help me determine if the packets are received. While hotswapping is possible via a debugger, the thing what diesieben probably wants you to do is have a breakpoint in the method that is supposed to be called in the client side, from context I assume onMessage. You check that the values are correct, and if they are not, fix your code until they are. But doesn't a breakpoint just skip a part of code? How would that help?
-
[SOLVED] GUI not updating values
The debugger just allows you to modify code in real time. I don't really understand how that would help me determine if the packets are received.
-
[SOLVED] GUI not updating values
Then where's it's output? In the console it doesn't say anything close to packets. Which mode should I select in the debug configuration?
-
[SOLVED] GUI not updating values
You mean the debugger client in eclipse? If so then where do I find it's log?
-
[SOLVED] GUI not updating values
OMG I'M SO STUPID. I didn't notice that. And yet nothing has changed...
-
[SOLVED] GUI not updating values
Ahaha that certainly did crack me up === Code updated
-
[SOLVED] GUI not updating values
Fixed. And ... still nothing. This GUI is starting to seriously irritate me.
-
[SOLVED] GUI not updating values
I didn't see that getSide() return physical. Sorry. Alright so I did replace getSide() with getEffectiveSide() (because I couldn't use world.isRemote). And i totally forgot to remove syncMana from those methods. But even after all this stuff the goddamn GUI just doesn't want to work.
-
[SOLVED] GUI not updating values
Must have been a copy 'n' paste error. So I did as you said and replaced all field access with the setter methods. I made a check in the syncMana() method. But still nothing. I have 2 packets because I don't know how to store 2 variables in one packet (I know I am retarded).
-
[SOLVED] GUI not updating values
This should be more convenient. btw the IEEP is located in ' Network' and the message handlers are in 'Handler' https://github.com/Melonslise/Runic-Inscription/tree/master/Java/melonslise/runicinscription/Handler
-
[SOLVED] GUI not updating values
It was linked twice already, goddamnit: http://mcforge.readthedocs.io/en/latest/concepts/sides/ You removed any syncing... There's still syncMana() in the other methods like consumeMana (which obviously I use for testing) so not all syncing has been removed. But still when using consumeMana the GUI does not update damn it
-
[SOLVED] GUI not updating values
Ah I see. So in that case how would I check if the method is being called on the client/server side? But for now I have removed the syncMana() from the two methods and ... the goddamn GUI still does not update. Where did I screw up this time? I'm sorry if I'm taking your time.
-
[SOLVED] GUI not updating values
Ok now I set the value from the packet to the client IEEP (hopefully) in my handler: ManaProperties props = ManaProperties.get((EntityPlayer) player); props.get(player).setCurrentMana(amount); And here is the method in the IEEP public void setCurrentMana(int amount) { if(amount <= this.maxMana) { this.currentMana = amount; } else { this.currentMana = this.maxMana; } this.syncMana(); } And I'm getting a server crash when entering a world: [17:38:34] [server thread/INFO]: Player281 joined the game [17:38:34] [Client thread/ERROR] [FML]: SimpleChannelHandlerWrapper exception java.lang.ClassCastException: net.minecraft.client.entity.EntityClientPlayerMP cannot be cast to net.minecraft.entity.player.EntityPlayerMP at melonslise.runicinscription.Network.ManaProperties.syncMana(ManaProperties.java:124) ~[ManaProperties.class:?] at melonslise.runicinscription.Network.ManaProperties.setMaxMana(ManaProperties.java:105) ~[ManaProperties.class:?] at melonslise.runicinscription.Handler.HandlerMaxManaMessage.onMessage(HandlerMaxManaMessage.java:22) ~[HandlerMaxManaMessage.class:?] at melonslise.runicinscription.Handler.HandlerMaxManaMessage.onMessage(HandlerMaxManaMessage.java:1) ~[HandlerMaxManaMessage.class:?] at cpw.mods.fml.common.network.simpleimpl.SimpleChannelHandlerWrapper.channelRead0(SimpleChannelHandlerWrapper.java:37) ~[simpleChannelHandlerWrapper.class:?] at cpw.mods.fml.common.network.simpleimpl.SimpleChannelHandlerWrapper.channelRead0(SimpleChannelHandlerWrapper.java:17) ~[simpleChannelHandlerWrapper.class:?] at io.netty.channel.SimpleChannelInboundHandler.channelRead(SimpleChannelInboundHandler.java:98) ~[simpleChannelInboundHandler.class:?] at io.netty.channel.DefaultChannelHandlerContext.invokeChannelRead(DefaultChannelHandlerContext.java:337) [DefaultChannelHandlerContext.class:?] at io.netty.channel.DefaultChannelHandlerContext.fireChannelRead(DefaultChannelHandlerContext.java:323) [DefaultChannelHandlerContext.class:?] at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:103) [MessageToMessageDecoder.class:?] at io.netty.handler.codec.MessageToMessageCodec.channelRead(MessageToMessageCodec.java:111) [MessageToMessageCodec.class:?] at io.netty.channel.DefaultChannelHandlerContext.invokeChannelRead(DefaultChannelHandlerContext.java:337) [DefaultChannelHandlerContext.class:?] at io.netty.channel.DefaultChannelHandlerContext.fireChannelRead(DefaultChannelHandlerContext.java:323) [DefaultChannelHandlerContext.class:?] at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:785) [DefaultChannelPipeline.class:?] at io.netty.channel.embedded.EmbeddedChannel.writeInbound(EmbeddedChannel.java:169) [EmbeddedChannel.class:?] at cpw.mods.fml.common.network.internal.FMLProxyPacket.processPacket(FMLProxyPacket.java:86) [FMLProxyPacket.class:?] at net.minecraft.network.NetworkManager.processReceivedPackets(NetworkManager.java:241) [NetworkManager.class:?] at net.minecraft.client.Minecraft.runTick(Minecraft.java:2152) [Minecraft.class:?] at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1039) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:962) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_92] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_92] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?] at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) [start/:?] at GradleStart.main(Unknown Source) [start/:?] [17:38:34] [Client thread/ERROR] [FML]: SimpleChannelHandlerWrapper exception java.lang.ClassCastException: net.minecraft.client.entity.EntityClientPlayerMP cannot be cast to net.minecraft.entity.player.EntityPlayerMP at melonslise.runicinscription.Network.ManaProperties.syncMana(ManaProperties.java:124) ~[ManaProperties.class:?] at melonslise.runicinscription.Network.ManaProperties.setMaxMana(ManaProperties.java:105) ~[ManaProperties.class:?] at melonslise.runicinscription.Handler.HandlerMaxManaMessage.onMessage(HandlerMaxManaMessage.java:22) ~[HandlerMaxManaMessage.class:?] at melonslise.runicinscription.Handler.HandlerMaxManaMessage.onMessage(HandlerMaxManaMessage.java:1) ~[HandlerMaxManaMessage.class:?] at cpw.mods.fml.common.network.simpleimpl.SimpleChannelHandlerWrapper.channelRead0(SimpleChannelHandlerWrapper.java:37) ~[simpleChannelHandlerWrapper.class:?] at cpw.mods.fml.common.network.simpleimpl.SimpleChannelHandlerWrapper.channelRead0(SimpleChannelHandlerWrapper.java:17) ~[simpleChannelHandlerWrapper.class:?] at io.netty.channel.SimpleChannelInboundHandler.channelRead(SimpleChannelInboundHandler.java:98) ~[simpleChannelInboundHandler.class:?] at io.netty.channel.DefaultChannelHandlerContext.invokeChannelRead(DefaultChannelHandlerContext.java:337) [DefaultChannelHandlerContext.class:?] at io.netty.channel.DefaultChannelHandlerContext.fireChannelRead(DefaultChannelHandlerContext.java:323) [DefaultChannelHandlerContext.class:?] at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:103) [MessageToMessageDecoder.class:?] at io.netty.handler.codec.MessageToMessageCodec.channelRead(MessageToMessageCodec.java:111) [MessageToMessageCodec.class:?] at io.netty.channel.DefaultChannelHandlerContext.invokeChannelRead(DefaultChannelHandlerContext.java:337) [DefaultChannelHandlerContext.class:?] at io.netty.channel.DefaultChannelHandlerContext.fireChannelRead(DefaultChannelHandlerContext.java:323) [DefaultChannelHandlerContext.class:?] at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:785) [DefaultChannelPipeline.class:?] at io.netty.channel.embedded.EmbeddedChannel.writeInbound(EmbeddedChannel.java:169) [EmbeddedChannel.class:?] at cpw.mods.fml.common.network.internal.FMLProxyPacket.processPacket(FMLProxyPacket.java:86) [FMLProxyPacket.class:?] at net.minecraft.network.NetworkManager.processReceivedPackets(NetworkManager.java:241) [NetworkManager.class:?] at net.minecraft.client.Minecraft.runTick(Minecraft.java:2152) [Minecraft.class:?] at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1039) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:962) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_92] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_92] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?] at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) [start/:?] at GradleStart.main(Unknown Source) [start/:?] [17:38:34] [Client thread/ERROR] [FML]: There was a critical exception handling a packet on channel RunicInscription java.lang.ClassCastException: net.minecraft.client.entity.EntityClientPlayerMP cannot be cast to net.minecraft.entity.player.EntityPlayerMP at melonslise.runicinscription.Network.ManaProperties.syncMana(ManaProperties.java:124) ~[ManaProperties.class:?] at melonslise.runicinscription.Network.ManaProperties.setMaxMana(ManaProperties.java:105) ~[ManaProperties.class:?] at melonslise.runicinscription.Handler.HandlerMaxManaMessage.onMessage(HandlerMaxManaMessage.java:22) ~[HandlerMaxManaMessage.class:?] at melonslise.runicinscription.Handler.HandlerMaxManaMessage.onMessage(HandlerMaxManaMessage.java:1) ~[HandlerMaxManaMessage.class:?] at cpw.mods.fml.common.network.simpleimpl.SimpleChannelHandlerWrapper.channelRead0(SimpleChannelHandlerWrapper.java:37) ~[simpleChannelHandlerWrapper.class:?] at cpw.mods.fml.common.network.simpleimpl.SimpleChannelHandlerWrapper.channelRead0(SimpleChannelHandlerWrapper.java:17) ~[simpleChannelHandlerWrapper.class:?] at io.netty.channel.SimpleChannelInboundHandler.channelRead(SimpleChannelInboundHandler.java:98) ~[simpleChannelInboundHandler.class:?] at io.netty.channel.DefaultChannelHandlerContext.invokeChannelRead(DefaultChannelHandlerContext.java:337) ~[DefaultChannelHandlerContext.class:?] at io.netty.channel.DefaultChannelHandlerContext.fireChannelRead(DefaultChannelHandlerContext.java:323) ~[DefaultChannelHandlerContext.class:?] at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:103) ~[MessageToMessageDecoder.class:?] at io.netty.handler.codec.MessageToMessageCodec.channelRead(MessageToMessageCodec.java:111) ~[MessageToMessageCodec.class:?] at io.netty.channel.DefaultChannelHandlerContext.invokeChannelRead(DefaultChannelHandlerContext.java:337) ~[DefaultChannelHandlerContext.class:?] at io.netty.channel.DefaultChannelHandlerContext.fireChannelRead(DefaultChannelHandlerContext.java:323) ~[DefaultChannelHandlerContext.class:?] at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:785) ~[DefaultChannelPipeline.class:?] at io.netty.channel.embedded.EmbeddedChannel.writeInbound(EmbeddedChannel.java:169) ~[EmbeddedChannel.class:?] at cpw.mods.fml.common.network.internal.FMLProxyPacket.processPacket(FMLProxyPacket.java:86) [FMLProxyPacket.class:?] at net.minecraft.network.NetworkManager.processReceivedPackets(NetworkManager.java:241) [NetworkManager.class:?] at net.minecraft.client.Minecraft.runTick(Minecraft.java:2152) [Minecraft.class:?] at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1039) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:962) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_92] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_92] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?] at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) [start/:?] at GradleStart.main(Unknown Source) [start/:?] [17:38:34] [Client thread/ERROR] [FML]: SimpleChannelHandlerWrapper exception java.lang.ClassCastException: net.minecraft.client.entity.EntityClientPlayerMP cannot be cast to net.minecraft.entity.player.EntityPlayerMP at melonslise.runicinscription.Network.ManaProperties.syncMana(ManaProperties.java:124) ~[ManaProperties.class:?] at melonslise.runicinscription.Network.ManaProperties.setCurrentMana(ManaProperties.java:119) ~[ManaProperties.class:?] at melonslise.runicinscription.Handler.HandlerCurrentManaMessage.onMessage(HandlerCurrentManaMessage.java:22) ~[HandlerCurrentManaMessage.class:?] at melonslise.runicinscription.Handler.HandlerCurrentManaMessage.onMessage(HandlerCurrentManaMessage.java:1) ~[HandlerCurrentManaMessage.class:?] at cpw.mods.fml.common.network.simpleimpl.SimpleChannelHandlerWrapper.channelRead0(SimpleChannelHandlerWrapper.java:37) ~[simpleChannelHandlerWrapper.class:?] at cpw.mods.fml.common.network.simpleimpl.SimpleChannelHandlerWrapper.channelRead0(SimpleChannelHandlerWrapper.java:17) ~[simpleChannelHandlerWrapper.class:?] at io.netty.channel.SimpleChannelInboundHandler.channelRead(SimpleChannelInboundHandler.java:98) ~[simpleChannelInboundHandler.class:?] at io.netty.channel.DefaultChannelHandlerContext.invokeChannelRead(DefaultChannelHandlerContext.java:337) [DefaultChannelHandlerContext.class:?] at io.netty.channel.DefaultChannelHandlerContext.fireChannelRead(DefaultChannelHandlerContext.java:323) [DefaultChannelHandlerContext.class:?] at io.netty.channel.SimpleChannelInboundHandler.channelRead(SimpleChannelInboundHandler.java:101) [simpleChannelInboundHandler.class:?] at io.netty.channel.DefaultChannelHandlerContext.invokeChannelRead(DefaultChannelHandlerContext.java:337) [DefaultChannelHandlerContext.class:?] at io.netty.channel.DefaultChannelHandlerContext.fireChannelRead(DefaultChannelHandlerContext.java:323) [DefaultChannelHandlerContext.class:?] at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:103) [MessageToMessageDecoder.class:?] at io.netty.handler.codec.MessageToMessageCodec.channelRead(MessageToMessageCodec.java:111) [MessageToMessageCodec.class:?] at io.netty.channel.DefaultChannelHandlerContext.invokeChannelRead(DefaultChannelHandlerContext.java:337) [DefaultChannelHandlerContext.class:?] at io.netty.channel.DefaultChannelHandlerContext.fireChannelRead(DefaultChannelHandlerContext.java:323) [DefaultChannelHandlerContext.class:?] at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:785) [DefaultChannelPipeline.class:?] at io.netty.channel.embedded.EmbeddedChannel.writeInbound(EmbeddedChannel.java:169) [EmbeddedChannel.class:?] at cpw.mods.fml.common.network.internal.FMLProxyPacket.processPacket(FMLProxyPacket.java:86) [FMLProxyPacket.class:?] at net.minecraft.network.NetworkManager.processReceivedPackets(NetworkManager.java:241) [NetworkManager.class:?] at net.minecraft.client.Minecraft.runTick(Minecraft.java:2152) [Minecraft.class:?] at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1039) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:962) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_92] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_92] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?] at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) [start/:?] at GradleStart.main(Unknown Source) [start/:?] [17:38:34] [Client thread/ERROR] [FML]: There was a critical exception handling a packet on channel RunicInscription java.lang.ClassCastException: net.minecraft.client.entity.EntityClientPlayerMP cannot be cast to net.minecraft.entity.player.EntityPlayerMP at melonslise.runicinscription.Network.ManaProperties.syncMana(ManaProperties.java:124) ~[ManaProperties.class:?] at melonslise.runicinscription.Network.ManaProperties.setCurrentMana(ManaProperties.java:119) ~[ManaProperties.class:?] at melonslise.runicinscription.Handler.HandlerCurrentManaMessage.onMessage(HandlerCurrentManaMessage.java:22) ~[HandlerCurrentManaMessage.class:?] at melonslise.runicinscription.Handler.HandlerCurrentManaMessage.onMessage(HandlerCurrentManaMessage.java:1) ~[HandlerCurrentManaMessage.class:?] at cpw.mods.fml.common.network.simpleimpl.SimpleChannelHandlerWrapper.channelRead0(SimpleChannelHandlerWrapper.java:37) ~[simpleChannelHandlerWrapper.class:?] at cpw.mods.fml.common.network.simpleimpl.SimpleChannelHandlerWrapper.channelRead0(SimpleChannelHandlerWrapper.java:17) ~[simpleChannelHandlerWrapper.class:?] at io.netty.channel.SimpleChannelInboundHandler.channelRead(SimpleChannelInboundHandler.java:98) ~[simpleChannelInboundHandler.class:?] at io.netty.channel.DefaultChannelHandlerContext.invokeChannelRead(DefaultChannelHandlerContext.java:337) ~[DefaultChannelHandlerContext.class:?] at io.netty.channel.DefaultChannelHandlerContext.fireChannelRead(DefaultChannelHandlerContext.java:323) ~[DefaultChannelHandlerContext.class:?] at io.netty.channel.SimpleChannelInboundHandler.channelRead(SimpleChannelInboundHandler.java:101) ~[simpleChannelInboundHandler.class:?] at io.netty.channel.DefaultChannelHandlerContext.invokeChannelRead(DefaultChannelHandlerContext.java:337) ~[DefaultChannelHandlerContext.class:?] at io.netty.channel.DefaultChannelHandlerContext.fireChannelRead(DefaultChannelHandlerContext.java:323) ~[DefaultChannelHandlerContext.class:?] at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:103) ~[MessageToMessageDecoder.class:?] at io.netty.handler.codec.MessageToMessageCodec.channelRead(MessageToMessageCodec.java:111) ~[MessageToMessageCodec.class:?] at io.netty.channel.DefaultChannelHandlerContext.invokeChannelRead(DefaultChannelHandlerContext.java:337) ~[DefaultChannelHandlerContext.class:?] at io.netty.channel.DefaultChannelHandlerContext.fireChannelRead(DefaultChannelHandlerContext.java:323) ~[DefaultChannelHandlerContext.class:?] at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:785) ~[DefaultChannelPipeline.class:?] at io.netty.channel.embedded.EmbeddedChannel.writeInbound(EmbeddedChannel.java:169) ~[EmbeddedChannel.class:?] at cpw.mods.fml.common.network.internal.FMLProxyPacket.processPacket(FMLProxyPacket.java:86) [FMLProxyPacket.class:?] at net.minecraft.network.NetworkManager.processReceivedPackets(NetworkManager.java:241) [NetworkManager.class:?] at net.minecraft.client.Minecraft.runTick(Minecraft.java:2152) [Minecraft.class:?] at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1039) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:962) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_92] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_92] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_92] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?] at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) [start/:?] at GradleStart.main(Unknown Source) [start/:?] [17:38:34] [server thread/INFO]: Player281 lost connection: TextComponent{text='Disconnected', siblings=[], style=Style{hasParent=false, color=null, bold=null, italic=null, underlined=null, obfuscated=null, clickEvent=null, hoverEvent=null}} [17:38:34] [server thread/INFO]: Player281 left the game [17:38:35] [server thread/INFO]: Stopping singleplayer server as player logged out [17:38:35] [server thread/INFO]: Stopping server [17:38:35] [server thread/INFO]: Saving players [17:38:35] [server thread/INFO]: Saving worlds [17:38:35] [server thread/INFO]: Saving chunks for level 'TEST'/Overworld [17:38:35] [server thread/INFO]: Saving chunks for level 'TEST'/Nether [17:38:35] [server thread/INFO]: Saving chunks for level 'TEST'/The End [17:38:36] [server thread/INFO] [FML]: Unloading dimension 0 [17:38:36] [server thread/INFO] [FML]: Unloading dimension -1 [17:38:36] [server thread/INFO] [FML]: Unloading dimension 1 [17:38:36] [server thread/INFO] [FML]: Applying holder lookups [17:38:36] [server thread/INFO] [FML]: Holder lookups applied [17:38:42] [Client thread/INFO]: Stopping! [17:38:42] [Client thread/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [17:38:42] [Client thread/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: SoundSystem shutting down... [17:38:42] [Client thread/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:importantMessage:90]: Author: Paul Lamb, www.paulscode.com [17:38:42] [Client thread/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Java HotSpot(TM) 64-Bit Server VM warning: Using incremental CMS is deprecated and will likely be removed in a future release Again, sorry for being so stupid, but please bear with me.
IPS spam blocked by CleanTalk.