Skip to content

Commit

Permalink
Fix #6725: Too many items in the system, prevents items from showing …
Browse files Browse the repository at this point in the history
…up (#7069)

We already had the proper packet splitting logic, however it was splitting at 512 MiB instead of splitting at 512 KiB... 😄
  • Loading branch information
Technici4n committed May 22, 2023
1 parent 0dddbf3 commit 15dbb62
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public class MEInventoryUpdatePacket extends BasePacket {
/**
* Maximum size of a single packet before it will be flushed forcibly.
*/
private static final int UNCOMPRESSED_PACKET_BYTE_LIMIT = 512 * 1024 * 1024;
private static final int UNCOMPRESSED_PACKET_BYTE_LIMIT = 512 * 1024;

/**
* Initial buffer size for an update packet.
Expand Down

0 comments on commit 15dbb62

Please sign in to comment.