aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/server/0050-Configurable-container-update-tick-rate.patch
diff options
context:
space:
mode:
Diffstat (limited to 'patches/server/0050-Configurable-container-update-tick-rate.patch')
-rw-r--r--patches/server/0050-Configurable-container-update-tick-rate.patch31
1 files changed, 31 insertions, 0 deletions
diff --git a/patches/server/0050-Configurable-container-update-tick-rate.patch b/patches/server/0050-Configurable-container-update-tick-rate.patch
new file mode 100644
index 0000000000..e0cfe6d6ee
--- /dev/null
+++ b/patches/server/0050-Configurable-container-update-tick-rate.patch
@@ -0,0 +1,31 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: Sudzzy <[email protected]>
+Date: Wed, 2 Mar 2016 23:34:44 -0600
+Subject: [PATCH] Configurable container update tick rate
+
+
+diff --git a/src/main/java/net/minecraft/server/level/ServerPlayer.java b/src/main/java/net/minecraft/server/level/ServerPlayer.java
+index 01ae7e9847602d489c34f060ff132a1f5f9781a3..7e5fb0abe6cb4f10c41dedb2076e70bd9ace5430 100644
+--- a/src/main/java/net/minecraft/server/level/ServerPlayer.java
++++ b/src/main/java/net/minecraft/server/level/ServerPlayer.java
+@@ -293,6 +293,7 @@ public class ServerPlayer extends net.minecraft.world.entity.player.Player {
+ private final CommandSource commandSource;
+ private int containerCounter;
+ public boolean wonGame;
++ private int containerUpdateDelay; // Paper - Configurable container update tick rate
+
+ // CraftBukkit start
+ public CraftPlayer.TransferCookieConnection transferCookieConnection;
+@@ -922,7 +923,11 @@ public class ServerPlayer extends net.minecraft.world.entity.player.Player {
+ --this.invulnerableTime;
+ }
+
+- this.containerMenu.broadcastChanges();
++ if (--this.containerUpdateDelay <= 0) {
++ this.containerMenu.broadcastChanges();
++ this.containerUpdateDelay = this.level().paperConfig().tickRates.containerUpdate;
++ }
++ // Paper end - Configurable container update tick rate
+ if (!this.containerMenu.stillValid(this)) {
+ this.closeContainer();
+ this.containerMenu = this.inventoryMenu;