Pasqual Koschmieder
Pasqual Koschmieder
Still: use the latest development build from https://ci.dmulloy2.net/job/ProtocolLib/lastSuccessfulBuild/ to get 1.19+ support
Hm, that kinda makes sense then... But I cannot access the data, I am just getting the exported data and I'm trying to parse it. It seems a bit odd...
Blocked until we update everything to use Java 21 (and Gradle does support compiling on it)
You need to specific the places where that support is lacking. We already have code to convert these kinds of color codes, see https://github.com/CloudNetService/CloudNet-v3/blob/nightly/ext/adventure-helper/src/main/java/eu/cloudnetservice/ext/component/ComponentConverter.java
This is very likely a BungeeCord issue. This error does not occur on other platforms. But if exclusion works go with it I guess. The shaded version of adventure was...
So basically you're proposing the solutation to be: in case there are too many messages, block the netty event loop threads (by processing incoming packets on them) and hope that...
Just want to point out 2 things here: 1. the byte array for reading is shared, the 50MB are only allocated once and then re-used for each chunk. 2. we're...
We did enable that already (https://github.com/CloudNetService/CloudNet-v3/commit/ae1735e8abfe4ecde9b8ad9f64c14adcfa0c37f9), but it's still not a full fix for the issue. We're looking into properly implementing this memory handling when we have time.
> We need the array here, the buffer here, the buffer here and the buffer here. I went ahead and removed the last full copy of the packet buffer into...
We need to copy the buffer at least once as we allow (and chunked packet actually relies on it) that the same packet is sent to multiple channels, thus the...