User contributions
Jump to navigation
Jump to search
- 17:15, 11 April 2023 diff hist +24 m Protocol FAQ Fix Player Position packet link
- 10:10, 10 March 2023 diff hist -10 m Protocol
- 10:10, 10 March 2023 diff hist +9 Protocol The field is optional, therefore its type should be noted as such.
- 09:43, 24 November 2021 diff hist +8 VarInt And VarLong fix some variable names (if anyone wants to discuss mojang's version, feel free to ping me from the sponge, paper, forge, or fabric discords at doot#0001)
- 09:22, 24 November 2021 diff hist +101 VarInt And VarLong Use mojang's own version of readVarInt/readVarLong
- 09:16, 24 November 2021 diff hist -196 VarInt And VarLong Replace writeVarInt/writeeVarLong with mojang's own version (binary is not easier to read precisely because it takes more digits to represent, and is therefore prone to human error)
- 22:16, 21 August 2021 diff hist -18 VarInt And VarLong Based on this blog post by Velocity's creator: https://steinborn-me.pages.dev/posts/performance/how-fast-can-you-write-a-varint/Replace VarInt/VarLong writing methods with Velocity's old varint writing method (with an extended version for varlong writing). Should make it easier to understand by replacing the do-while with just a while loop.
- 21:46, 21 August 2021 diff hist +70 VarInt And VarLong proper varint serialization uses byte-based segmenting rather than bit-based :)
- 22:51, 2 August 2021 diff hist +37 VarInt And VarLong revert to the old byte-based read/write for readability
- 20:25, 26 June 2021 diff hist +264 VarInt And VarLong Undo revision 16775 by Pv6q (talk) - Reverted because it unnecessarily removed a helpful comment and needlessly changed variable names. The old methods have worked fine for literally years, there's no point in changing something that isn't broken. Tag: Undo
- 00:47, 26 June 2021 diff hist +28 User:Doot current
- 00:46, 26 June 2021 diff hist +237 N User:Doot Created page with "I do stuff with [https://www.spongepowered.org/ Sponge]. Also occasionally mess around with the Rust language. Need to chat? Message me at '''doot#0001''' on Discord, through..."
- 00:39, 26 June 2021 diff hist +391 VarInt And VarLong Undo revision 16749 by Pv6q (talk) - pseudocode favors readability over efficiency, and your new readVarInt/readVarLong incorrectly handles the error case. Tag: Undo