Upstream - Classloader changes and interact limiter changes
This commit is contained in:
2
Bukkit
2
Bukkit
Submodule Bukkit updated: d30cb63000...6ce9a7d986
Submodule CraftBukkit updated: 426f936d07...c9f320907d
@@ -1,6 +1,6 @@
|
||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||
From: Zach Brown <1254957+zachbr@users.noreply.github.com>
|
||||
Date: Fri, 11 Jul 2014 08:17:00 -0500
|
||||
Date: Wed, 16 Jul 2014 14:11:08 -0500
|
||||
Subject: [PATCH] Toggle for player interact limiter
|
||||
|
||||
|
||||
@@ -21,8 +21,8 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
|
||||
|
||||
public void a(PacketPlayInBlockPlace packetplayinblockplace) {
|
||||
boolean throttled = false;
|
||||
- if (lastPlace != -1 && MinecraftServer.currentTick - lastPlace < 1) {
|
||||
+ if (lastPlace != -1 && MinecraftServer.currentTick - lastPlace < 1 && PaperSpigotConfig.interactLimitEnabled) { // PaperSpigot - Allow interact limit to be disabled
|
||||
- if (lastPlace != -1 && packetplayinblockplace.timestamp - lastPlace < 5) {
|
||||
+ if (lastPlace != -1 && packetplayinblockplace.timestamp - lastPlace < 5 && PaperSpigotConfig.interactLimitEnabled) {
|
||||
throttled = true;
|
||||
} else
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user