Skip to content

Commit

Permalink
fix: match style
Browse files Browse the repository at this point in the history
  • Loading branch information
Kowaman authored Jul 24, 2024
1 parent 8bbe2fe commit 1fdec09
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ public void read(ByteBuf buf, ProtocolConstants.Direction direction, int protoco
if ( protocolVersion >= ProtocolConstants.MINECRAFT_1_20_5 )
{
command = readString( buf, 32767 );
} else {
} else
{
command = readString( buf, 256 );
}
timestamp = buf.readLong();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ public void read(ByteBuf buf, ProtocolConstants.Direction direction, int protoco
if ( protocolVersion >= ProtocolConstants.MINECRAFT_1_20_5 )
{
command = readString( buf, 32767 );
} else {
} else
{
command = readString( buf, 256 );
}
}
Expand Down

0 comments on commit 1fdec09

Please sign in to comment.