Increase the packet size limit to 10. Fixes #3430
This commit is contained in:
@@ -12,6 +12,10 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
- Fixed external storage cache being de-synced from the network cache.
|
||||
- Fixed external storage using an out of date block entity for getting handler.
|
||||
|
||||
### Changed
|
||||
|
||||
- Increased packet size limit.
|
||||
|
||||
## [v1.11.2] - 2022-12-17
|
||||
|
||||
### Added
|
||||
@@ -208,7 +212,7 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
- Fixed wrong alignment for the JEI request autocrafting tooltip.
|
||||
- Fixed mobs getting stuck in Refined Storage cables.
|
||||
- Fixed dismantling storage blocks ignoring stack size.
|
||||
- Fixed Ice and Fire banners breaking with Refined Storage. necauqua)
|
||||
- Fixed Ice and Fire banners breaking with Refined Storage.
|
||||
- Fixed empty keybinding causing GL errors.
|
||||
- Fixed some parts of the Japanese translation.
|
||||
- Fixed rendering issue on blocks when using OptiFine.
|
||||
@@ -539,8 +543,6 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## [v1.7.1-alpha] - 2019-11-19
|
||||
|
||||
### Added
|
||||
|
||||
### Fixed
|
||||
|
||||
- Fixed Pattern Grid causing world hanging on load.
|
||||
|
@@ -25,7 +25,7 @@ public class NetworkHandler {
|
||||
.serverAcceptedVersions(protocolVersion::equals)
|
||||
.networkProtocolVersion(() -> protocolVersion)
|
||||
.simpleChannel();
|
||||
private final PacketSplitter splitter = new PacketSplitter(5, handler, channel);
|
||||
private final PacketSplitter splitter = new PacketSplitter(10, handler, channel);
|
||||
|
||||
public void register() {
|
||||
int id = 0;
|
||||
|
Reference in New Issue
Block a user