Compatibility
Minecraft: Java Edition
1.4.7
Platforms
Forge
Supported environments
90% of ad revenue goes to creators
Support creators and Modrinth ad-free with Modrinth+Creators
Details
Licensed Apache-2.0
Published last year
Updated last year
This server-side coremod fixes the disconnect.overflow
error that players might get on some 1.4.7 servers, most often caused by having a large amount of machines in one location.
The cause of this problem is a check in Minecraft's TcpConnection.java#processReadPackets()
method where the server checks the size of the send queue for the user. If the queue is larger than 2MB, the server will drop the player's connection. If a player joins a server in an area with a large number of machines, the send queue can easily exceed the 2MB limit, causing them to be disconnected.
This mod simply patches the server to increase the maximum queue size to 20MB.