SPIGOT-4116: Increase command tab spam threshold
This commit is contained in:
parent
30ab12cf4c
commit
587014503b
@ -289,7 +289,7 @@
|
|||||||
public void a(PacketPlayInTabComplete packetplayintabcomplete) {
|
public void a(PacketPlayInTabComplete packetplayintabcomplete) {
|
||||||
PlayerConnectionUtils.ensureMainThread(packetplayintabcomplete, this, this.player.getWorldServer());
|
PlayerConnectionUtils.ensureMainThread(packetplayintabcomplete, this, this.player.getWorldServer());
|
||||||
+ // CraftBukkit start
|
+ // CraftBukkit start
|
||||||
+ if (chatSpamField.addAndGet(this, 5) > 500 && !this.minecraftServer.getPlayerList().isOp(this.player.getProfile())) {
|
+ if (chatSpamField.addAndGet(this, 2) > 500 && !this.minecraftServer.getPlayerList().isOp(this.player.getProfile())) {
|
||||||
+ this.disconnect(new ChatMessage("disconnect.spam", new Object[0]));
|
+ this.disconnect(new ChatMessage("disconnect.spam", new Object[0]));
|
||||||
+ return;
|
+ return;
|
||||||
+ }
|
+ }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user