Skip to content

Commit

Permalink
proxy -> server
Browse files Browse the repository at this point in the history
  • Loading branch information
astei committed Apr 19, 2023
1 parent 4ce2286 commit 6562a2e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public PacketByteBuf writeString(String string, int i) {
@Overwrite
public PacketByteBuf writeVarInt(int value) {
// Peel the one and two byte count cases explicitly as they are the most common VarInt sizes
// that the proxy will write, to improve inlining.
// that the server will send, to improve inlining.
if ((value & (0xFFFFFFFF << 7)) == 0) {
parent.writeByte(value);
} else if ((value & (0xFFFFFFFF << 14)) == 0) {
Expand Down

0 comments on commit 6562a2e

Please sign in to comment.