MCProtocolLib icon indicating copy to clipboard operation
MCProtocolLib copied to clipboard

A library for communication with a Minecraft client/server.

Results 55 MCProtocolLib issues
Sort by recently updated
recently updated
newest added

As the title says. Is this meant to be? My problem is, when trying to build dependencies with gradle using https://repo.opencollab.dev/maven-snapshots/ (1.19.2-SNAPSHOT) I get this error: Could not HEAD 'https://repo.opencollab.dev/maven-snapshots/com/nukkitx/math/1.1.1/math-1.1.1.pom'....

Hi, I had a similar problem with #408 with both 1.18.2-1 and 1.18.2-2-SNAPSHOT. Not sure what I did wrong but here is what happened: The dependencies in my `build.gradle`: ```...

1.18 really broke down the way MCProtocolLib handled chunks in the Netty thread - user information is now required to decode chunk information (world chunk height and biome global palette...

Hello, I simply tried to run the example with the 1.18-1 version of the lib and got the following error: `java.lang.RuntimeException: failed to create io_uring ring fd Cannot allocate memory`...

Hi! It would be nice if your library supported multi-version (for example ViaVersion 1.8-1.18.1), I don't know if it's difficult to implement, but I hope you will add it. You...

I was checking the ChunkSection.read method and I noticed it required a globalBiomePaletteBits. I was not sure what it was and after inspecting the source I noticed that it was...

We'd like to bump the Java version used in MCProtocolLib and its dependencies to, ideally, Java 16 (to be in line with Java Edition itself). For users of this library,...

@Override public void disconnected(DisconnectedEvent event) { System.out.print("Disconnected: " + event.getReason()); event.getReason() returns a string but the above code prints this: `Disconnected: TextComponentImpl{content="", style=StyleImpl{color=null, obfuscated=not_set, bold=not_set, strikethrough=not_set, underlined=not_set, italic=not_set, clickEvent=null, hoverEvent=null,...

bug

io.netty.handler.codec.DecoderException: com.google.gson.JsonParseException: Don't know how to turn null into a Component at io.netty.handler.codec.ByteToMessageDecoder.callDecode(ByteToMessageDecoder.java:478) at io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:276) at io.netty.handler.codec.ByteToMessageCodec.channelRead(ByteToMessageCodec.java:103) at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:379) at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:365) at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:357) at io.netty.handler.codec.ByteToMessageDecoder.fireChannelRead(ByteToMessageDecoder.java:324) at io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:296) at io.netty.handler.codec.ByteToMessageCodec.channelRead(ByteToMessageCodec.java:103) at...

I witer this code: ``` package org.example; import com.github.steveice10.mc.auth.exception.request.RequestException; import com.github.steveice10.mc.auth.service.AuthenticationService; import com.github.steveice10.mc.auth.service.MojangAuthenticationService; import com.github.steveice10.mc.auth.service.MsaAuthenticationService; import com.github.steveice10.mc.auth.service.SessionService; import com.github.steveice10.mc.protocol.MinecraftConstants; import com.github.steveice10.mc.protocol.MinecraftProtocol; import com.github.steveice10.mc.protocol.packet.ingame.clientbound.ClientboundLoginPacket; import com.github.steveice10.mc.protocol.packet.ingame.clientbound.ClientboundSystemChatPacket; import com.github.steveice10.mc.protocol.packet.ingame.serverbound.ServerboundChatPacket; import com.github.steveice10.packetlib.ProxyInfo; import...