Graphite icon indicating copy to clipboard operation
Graphite copied to clipboard

1.19.1 high-performance Minecraft server

Results 4 Graphite issues
Sort by recently updated
recently updated
newest added

I believe a Discord server would be a great start for the community.

Entities which have been despawned due to player movement will still send packets to players (for 1 tick) This can be fixed by only sending viewable packets if the chunk...

Turns out that `BTreeMap`s can be a bit faster than `HashMap`s when the element count is low. This is reflected in the benchmarks.

In `crates/graphite_binary/src/nbt/decode.rs` the `read_list` function uses `Vec::with_capacity(length as _)`. However, `length` has no upper bound. I believe malicious input could potentially allocate `i32::MAX * sizeof(usize)` bytes. The other read functions...