Skip to content

Commit

Permalink
Xbox Live Enforcement Team? Who's that?!
Browse files Browse the repository at this point in the history
  • Loading branch information
WesternIcelander committed Mar 14, 2023
1 parent 85cd611 commit 47bf514
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ public void read(ByteBuf buf, ProtocolConstants.Direction direction, int protoco

if ( protocolVersion >= ProtocolConstants.MINECRAFT_1_19_1 )
{
enforceSecure = buf.readBoolean();
buf.readBoolean();
enforceSecure = true;
}
}

Expand Down Expand Up @@ -92,7 +93,7 @@ public void write(ByteBuf buf, ProtocolConstants.Direction direction, int protoc

if ( protocolVersion >= ProtocolConstants.MINECRAFT_1_19_1 )
{
buf.writeBoolean( enforceSecure );
buf.writeBoolean( true );
}
}

Expand Down

0 comments on commit 47bf514

Please sign in to comment.