spigot/CraftBukkit-Patches/0062-Spam-Filter-Exclusions.patch

62 lines
2.4 KiB
Diff
Raw Normal View History

2018-01-22 01:19:57 +11:00
From 74911ef4c0e1bd793758a76ea5510a3e465f2fe4 Mon Sep 17 00:00:00 2001
2014-04-12 14:18:37 +10:00
From: md_5 <md_5@live.com.au>
Date: Sat, 8 Feb 2014 08:13:40 +0000
Subject: [PATCH] Spam Filter Exclusions
diff --git a/src/main/java/net/minecraft/server/PlayerConnection.java b/src/main/java/net/minecraft/server/PlayerConnection.java
2017-11-17 10:24:35 +11:00
index 1aecdb6a7..00dd996b5 100644
2014-04-12 14:18:37 +10:00
--- a/src/main/java/net/minecraft/server/PlayerConnection.java
+++ b/src/main/java/net/minecraft/server/PlayerConnection.java
2017-11-10 10:52:45 +11:00
@@ -1230,9 +1230,20 @@ public class PlayerConnection implements PacketListenerPlayIn, ITickable {
2014-04-12 14:18:37 +10:00
this.minecraftServer.getPlayerList().sendMessage(chatmessage1, false);
}
+ // Spigot start - spam exclusions
2014-04-12 14:18:37 +10:00
+ boolean counted = true;
+ for ( String exclude : org.spigotmc.SpigotConfig.spamExclusions )
+ {
+ if ( exclude != null && s.startsWith( exclude ) )
+ {
+ counted = false;
+ break;
+ }
+ }
+ // Spigot end
2014-04-12 14:18:37 +10:00
// CraftBukkit start - replaced with thread safe throttle
// this.chatThrottle += 20;
- if (chatSpamField.addAndGet(this, 20) > 200 && !this.minecraftServer.getPlayerList().isOp(this.player.getProfile())) {
+ if (counted && chatSpamField.addAndGet(this, 20) > 200 && !this.minecraftServer.getPlayerList().isOp(this.player.getProfile())) { // Spigot
if (!isSync) {
2014-04-12 14:18:37 +10:00
Waitable waitable = new Waitable() {
@Override
diff --git a/src/main/java/org/spigotmc/SpigotConfig.java b/src/main/java/org/spigotmc/SpigotConfig.java
2017-11-17 10:24:35 +11:00
index 88cbee5b1..0fabe2451 100644
2014-04-12 14:18:37 +10:00
--- a/src/main/java/org/spigotmc/SpigotConfig.java
+++ b/src/main/java/org/spigotmc/SpigotConfig.java
@@ -6,6 +6,7 @@ import java.io.IOException;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.lang.reflect.Modifier;
+import java.util.Arrays;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
@@ -280,4 +281,13 @@ public class SpigotConfig
2014-04-12 14:18:37 +10:00
{
playerShuffle = getInt( "settings.player-shuffle", 0 );
}
+
+ public static List<String> spamExclusions;
+ private static void spamExclusions()
+ {
+ spamExclusions = getList( "commands.spam-exclusions", Arrays.asList( new String[]
+ {
+ "/skill"
+ } ) );
+ }
}
--
2017-11-10 10:52:45 +11:00
2.14.1
2014-04-12 14:18:37 +10:00