aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/server/0044-Disable-spigot-tick-limiters.patch
diff options
context:
space:
mode:
Diffstat (limited to 'patches/server/0044-Disable-spigot-tick-limiters.patch')
-rw-r--r--patches/server/0044-Disable-spigot-tick-limiters.patch21
1 files changed, 21 insertions, 0 deletions
diff --git a/patches/server/0044-Disable-spigot-tick-limiters.patch b/patches/server/0044-Disable-spigot-tick-limiters.patch
new file mode 100644
index 0000000000..e562468965
--- /dev/null
+++ b/patches/server/0044-Disable-spigot-tick-limiters.patch
@@ -0,0 +1,21 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: Zach Brown <[email protected]>
+Date: Wed, 2 Mar 2016 23:45:17 -0600
+Subject: [PATCH] Disable spigot tick limiters
+
+
+diff --git a/src/main/java/net/minecraft/world/level/Level.java b/src/main/java/net/minecraft/world/level/Level.java
+index 7309226b6ee96db7330d712c41157bfde0d03d37..922b234865ff5d64049d634d0356f9a068bc8a8c 100644
+--- a/src/main/java/net/minecraft/world/level/Level.java
++++ b/src/main/java/net/minecraft/world/level/Level.java
+@@ -702,9 +702,7 @@ public abstract class Level implements LevelAccessor, AutoCloseable {
+ // Spigot start
+ // Iterator iterator = this.blockEntityTickers.iterator();
+ int tilesThisCycle = 0;
+- for (this.tileLimiter.initTick();
+- tilesThisCycle < this.blockEntityTickers.size() && (tilesThisCycle % 10 != 0 || this.tileLimiter.shouldContinue());
+- this.tileTickPosition++, tilesThisCycle++) {
++ for (tileTickPosition = 0; tileTickPosition < this.blockEntityTickers.size(); tileTickPosition++) { // Paper - Disable tick limiters
+ this.tileTickPosition = (this.tileTickPosition < this.blockEntityTickers.size()) ? this.tileTickPosition : 0;
+ TickingBlockEntity tickingblockentity = (TickingBlockEntity) this.blockEntityTickers.get(tileTickPosition);
+ // Spigot start