From f2e3b5c7ec30e047dcd450bf9154c8e3553c518a Mon Sep 17 00:00:00 2001 From: Andrew Steinborn Date: Sun, 9 Sep 2018 14:20:46 -0400 Subject: [PATCH] Increase plugin channels limit --- .../proxy/connection/client/ClientPlaySessionHandler.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proxy/src/main/java/com/velocitypowered/proxy/connection/client/ClientPlaySessionHandler.java b/proxy/src/main/java/com/velocitypowered/proxy/connection/client/ClientPlaySessionHandler.java index 0692fc001..8bc86848b 100644 --- a/proxy/src/main/java/com/velocitypowered/proxy/connection/client/ClientPlaySessionHandler.java +++ b/proxy/src/main/java/com/velocitypowered/proxy/connection/client/ClientPlaySessionHandler.java @@ -25,7 +25,7 @@ import java.util.*; */ public class ClientPlaySessionHandler implements MinecraftSessionHandler { private static final Logger logger = LogManager.getLogger(ClientPlaySessionHandler.class); - private static final int MAX_PLUGIN_CHANNELS = 128; + private static final int MAX_PLUGIN_CHANNELS = 1024; private final ConnectedPlayer player; private long lastPingID = -1;