aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/server/0720-Fix-Spigot-Config-not-using-commands.spam-exclusions.patch
diff options
context:
space:
mode:
Diffstat (limited to 'patches/server/0720-Fix-Spigot-Config-not-using-commands.spam-exclusions.patch')
-rw-r--r--patches/server/0720-Fix-Spigot-Config-not-using-commands.spam-exclusions.patch19
1 files changed, 19 insertions, 0 deletions
diff --git a/patches/server/0720-Fix-Spigot-Config-not-using-commands.spam-exclusions.patch b/patches/server/0720-Fix-Spigot-Config-not-using-commands.spam-exclusions.patch
new file mode 100644
index 0000000000..67b7b9467e
--- /dev/null
+++ b/patches/server/0720-Fix-Spigot-Config-not-using-commands.spam-exclusions.patch
@@ -0,0 +1,19 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: Doc <[email protected]>
+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 7c1a94980cf49d37be442e1b62de36d4395bcf2a..4fa49daf58723827366f611e006e77448cc73a0b 100644
+--- a/src/main/java/net/minecraft/server/network/ServerGamePacketListenerImpl.java
++++ b/src/main/java/net/minecraft/server/network/ServerGamePacketListenerImpl.java
+@@ -2383,7 +2383,7 @@ public class ServerGamePacketListenerImpl extends ServerCommonPacketListenerImpl
+ }
+ // Spigot end
+ // this.chatSpamTickCount += 20;
+- if (this.chatSpamTickCount.addAndGet(20) > 200 && !this.server.getPlayerList().isOp(this.player.getGameProfile()) && !this.server.isSingleplayerOwner(this.player.getGameProfile())) {
++ if (counted && this.chatSpamTickCount.addAndGet(20) > 200 && !this.server.getPlayerList().isOp(this.player.getGameProfile()) && !this.server.isSingleplayerOwner(this.player.getGameProfile())) { // Paper - exclude from SpigotConfig.spamExclusions
+ // CraftBukkit end
+ this.disconnect((Component) Component.translatable("disconnect.spam"), org.bukkit.event.player.PlayerKickEvent.Cause.SPAM); // Paper - kick event cause
+ }