FluxCapacitor
FluxCapacitor
Currently it seems like the Docker API doesn't support this, see these GitHub issues: https://github.com/docker/for-linux/issues/1136 https://github.com/moby/moby/issues/41711 Unfortunately, until this is implemented in the Docker Engine API, you probably have to...
From looking at it, it does contain NMS but it will continue to support new versions as long as the class structure does not change. If you look at the...
`getUserMedia()` will never work over HTTP (except at `localhost`) because of a decision made by browser vendors: https://blog.mozilla.org/webrtc/camera-microphone-require-https-in-firefox-68/ https://stackoverflow.com/a/34198101/6672199 The way that browsers handle this is by pretending as if...
From looking at decompiled Fabric sources, it seems like boat physics are entirely handled by client prediction. When a boat is moving around horizontally on ice, the server thinks its...
@GoldenStack Thanks for the very thorough review! I have addressed everything you've mentioned and I'll keep working on javadocs, unit tests, and manually verifying that the client reads the all...
I'm using this massive ItemStack to test out the API and make sure the client doesn't disconnect trying to read the packet: (Click to expand) ```java ItemStack itemStack = ItemStack.builder(Material.STONE)...
Working on some unit tests now and then I'll be done
Vanilla MC uses Optionals for their number ranges so that the output of deserializing and then serializing the same range will equal the input. In Minestom, though, we use primitive...
Agreed, and seems like matt agrees as well: https://discord.com/channels/706185253441634317/706186227493109860/1373233767753187411
Related to #1880 I made a comment on that issue with a workaround: https://github.com/Minestom/Minestom/issues/1880#issuecomment-1866973503