aboutsummaryrefslogtreecommitdiffhomepage
path: root/Spigot-Server-Patches/0245-Flag-to-disable-the-channel-limit.patch
diff options
context:
space:
mode:
Diffstat (limited to 'Spigot-Server-Patches/0245-Flag-to-disable-the-channel-limit.patch')
-rw-r--r--Spigot-Server-Patches/0245-Flag-to-disable-the-channel-limit.patch34
1 files changed, 34 insertions, 0 deletions
diff --git a/Spigot-Server-Patches/0245-Flag-to-disable-the-channel-limit.patch b/Spigot-Server-Patches/0245-Flag-to-disable-the-channel-limit.patch
new file mode 100644
index 0000000000..a87616392d
--- /dev/null
+++ b/Spigot-Server-Patches/0245-Flag-to-disable-the-channel-limit.patch
@@ -0,0 +1,34 @@
+From 2e2942bc159b5c614d5dc2b7cb28a3cc92c769a0 Mon Sep 17 00:00:00 2001
+From: Shane Freeder <[email protected]>
+Date: Sat, 31 Mar 2018 17:04:26 +0100
+Subject: [PATCH] Flag to disable the channel limit
+
+In some enviroments, the channel limit set by spigot can cause issues,
+e.g. servers which allow and support the usage of mod packs.
+
+provide an optional flag to disable this check, at your own risk.
+
+diff --git a/src/main/java/org/bukkit/craftbukkit/entity/CraftPlayer.java b/src/main/java/org/bukkit/craftbukkit/entity/CraftPlayer.java
+index 66873e98fe..62235efde9 100644
+--- a/src/main/java/org/bukkit/craftbukkit/entity/CraftPlayer.java
++++ b/src/main/java/org/bukkit/craftbukkit/entity/CraftPlayer.java
+@@ -131,6 +131,7 @@ public class CraftPlayer extends CraftHumanEntity implements Player {
+ // Paper start
+ private org.bukkit.event.player.PlayerResourcePackStatusEvent.Status resourcePackStatus;
+ private String resourcePackHash;
++ private static final boolean DISABLE_CHANNEL_LIMIT = System.getProperty("paper.disableChannelLimit") != null; // Paper - add a flag to disable the channel limit
+ // Paper end
+
+ public CraftPlayer(CraftServer server, EntityPlayer entity) {
+@@ -1433,7 +1434,7 @@ public class CraftPlayer extends CraftHumanEntity implements Player {
+ }
+
+ public void addChannel(String channel) {
+- Preconditions.checkState(channels.size() < 128, "Cannot register channel '%s'. Too many channels registered!", channel);
++ Preconditions.checkState(DISABLE_CHANNEL_LIMIT || channels.size() < 128, "Cannot register channel '%s'. Too many channels registered!", channel); // Paper - flag to disable channel limit
+ channel = StandardMessenger.validateAndCorrectChannel(channel);
+ if (channels.add(channel)) {
+ server.getPluginManager().callEvent(new PlayerRegisterChannelEvent(this, channel));
+--
+2.21.0
+