From 036a09c30024d620d90b1917154e51fcbef69c60 Mon Sep 17 00:00:00 2001 From: Pedro <3602279+Doc94@users.noreply.github.com> Date: Sun, 17 Jul 2022 12:37:39 -0400 Subject: [PATCH] Fix spigot config not using commands.spam-exclusions (#8151) --- ...g-not-using-commands.spam-exclusions.patch | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 patches/server/0924-Fix-Spigot-Config-not-using-commands.spam-exclusions.patch diff --git a/patches/server/0924-Fix-Spigot-Config-not-using-commands.spam-exclusions.patch b/patches/server/0924-Fix-Spigot-Config-not-using-commands.spam-exclusions.patch new file mode 100644 index 0000000000..195db54a6a --- /dev/null +++ b/patches/server/0924-Fix-Spigot-Config-not-using-commands.spam-exclusions.patch @@ -0,0 +1,19 @@ +From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 +From: Doc +Date: Sun, 17 Jul 2022 11:49:43 -0400 +Subject: [PATCH] Fix Spigot Config not using commands.spam-exclusions + + +diff --git a/src/main/java/net/minecraft/server/network/ServerGamePacketListenerImpl.java b/src/main/java/net/minecraft/server/network/ServerGamePacketListenerImpl.java +index 1290f1c33062b2ea821abca33433a53662b6d340..f342043f4a8aef7e757571ead0e0218fe7e5ee58 100644 +--- a/src/main/java/net/minecraft/server/network/ServerGamePacketListenerImpl.java ++++ b/src/main/java/net/minecraft/server/network/ServerGamePacketListenerImpl.java +@@ -2400,7 +2400,7 @@ public class ServerGamePacketListenerImpl implements ServerPlayerConnection, Ser + } + // Spigot end + // this.chatSpamTickCount += 20; +- if (this.chatSpamTickCount.addAndGet(20) > 200 && !this.server.getPlayerList().isOp(this.player.getGameProfile())) { ++ if (counted && this.chatSpamTickCount.addAndGet(20) > 200 && !this.server.getPlayerList().isOp(this.player.getGameProfile())) { // Paper - exclude from SpigotConfig.spamExclusions + if (!isSync) { + Waitable waitable = new Waitable() { + @Override