Paper/Spigot-Server-Patches/0039-Configurable-container-update-tick-rate.patch

47 lines
2.1 KiB
Diff
Raw Normal View History

From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
2016-03-01 00:09:49 +01:00
From: Sudzzy <originmc@outlook.com>
Date: Wed, 2 Mar 2016 23:34:44 -0600
Subject: [PATCH] Configurable container update tick rate
diff --git a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
index 428deed56dae597291670bea8c8a6a67ce4d940f..a4da22ea65d5fdba38f8dc331919088f9ca99aed 100644
2016-03-01 00:09:49 +01:00
--- a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
+++ b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
@@ -176,4 +176,9 @@ public class PaperWorldConfig {
2016-05-12 04:07:46 +02:00
private void mobSpawnerTickRate() {
mobSpawnerTickRate = getInt("mob-spawner-tick-rate", 1);
2016-03-01 00:09:49 +01:00
}
+
+ public int containerUpdateTickRate;
+ private void containerUpdateTickRate() {
+ containerUpdateTickRate = getInt("container-update-tick-rate", 1);
+ }
}
diff --git a/src/main/java/net/minecraft/server/EntityPlayer.java b/src/main/java/net/minecraft/server/EntityPlayer.java
index 4b932c18390e6a94f5ce0683b87d20c7e6708be7..5dce27334541d55c7a7d494cd92370570615dc05 100644
2016-03-01 00:09:49 +01:00
--- a/src/main/java/net/minecraft/server/EntityPlayer.java
+++ b/src/main/java/net/minecraft/server/EntityPlayer.java
2020-06-25 11:27:25 +02:00
@@ -76,6 +76,7 @@ public class EntityPlayer extends EntityHuman implements ICrafting {
2019-04-25 08:53:51 +02:00
public boolean e;
2018-09-09 20:38:27 +02:00
public int ping;
public boolean viewingCredits;
2016-03-01 00:09:49 +01:00
+ private int containerUpdateDelay; // Paper
// CraftBukkit start
public String displayName;
@@ -395,7 +396,12 @@ public class EntityPlayer extends EntityHuman implements ICrafting {
2016-03-01 00:09:49 +01:00
--this.noDamageTicks;
}
2019-04-25 08:53:51 +02:00
- this.activeContainer.c();
2016-03-01 00:09:49 +01:00
+ // Paper start - Configurable container update tick rate
+ if (--containerUpdateDelay <= 0) {
2019-04-25 08:53:51 +02:00
+ this.activeContainer.c();
2016-03-01 00:09:49 +01:00
+ containerUpdateDelay = world.paperConfig.containerUpdateTickRate;
+ }
+ // Paper end
if (!this.world.isClientSide && !this.activeContainer.canUse(this)) {
2016-03-01 00:09:49 +01:00
this.closeInventory();
this.activeContainer = this.defaultContainer;