2019-04-05 04:52:02 +00:00
|
|
|
From f1f33913c393a123fdb82cf71b44d56408c43bb1 Mon Sep 17 00:00:00 2001
|
2016-02-29 23:09:49 +00: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
|
2019-04-05 04:52:02 +00:00
|
|
|
index 92abe7f7e..ae2f73aa2 100644
|
2016-02-29 23:09:49 +00:00
|
|
|
--- a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
|
|
|
+++ b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2019-04-05 04:52:02 +00:00
|
|
|
@@ -178,4 +178,9 @@ public class PaperWorldConfig {
|
2016-05-12 02:07:46 +00:00
|
|
|
private void mobSpawnerTickRate() {
|
|
|
|
mobSpawnerTickRate = getInt("mob-spawner-tick-rate", 1);
|
2016-02-29 23:09:49 +00: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
|
2019-04-05 04:52:02 +00:00
|
|
|
index c4a55c6a1..2665faa6c 100644
|
2016-02-29 23:09:49 +00:00
|
|
|
--- a/src/main/java/net/minecraft/server/EntityPlayer.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/EntityPlayer.java
|
2019-01-01 03:15:55 +00:00
|
|
|
@@ -68,6 +68,7 @@ public class EntityPlayer extends EntityHuman implements ICrafting {
|
2018-09-09 18:38:27 +00:00
|
|
|
public boolean f;
|
|
|
|
public int ping;
|
|
|
|
public boolean viewingCredits;
|
2016-02-29 23:09:49 +00:00
|
|
|
+ private int containerUpdateDelay; // Paper
|
|
|
|
|
|
|
|
// CraftBukkit start
|
|
|
|
public String displayName;
|
2019-01-01 03:15:55 +00:00
|
|
|
@@ -332,7 +333,12 @@ public class EntityPlayer extends EntityHuman implements ICrafting {
|
2016-02-29 23:09:49 +00:00
|
|
|
--this.noDamageTicks;
|
|
|
|
}
|
|
|
|
|
|
|
|
- this.activeContainer.b();
|
|
|
|
+ // Paper start - Configurable container update tick rate
|
|
|
|
+ if (--containerUpdateDelay <= 0) {
|
|
|
|
+ this.activeContainer.b();
|
|
|
|
+ containerUpdateDelay = world.paperConfig.containerUpdateTickRate;
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
2017-09-18 11:04:01 +00:00
|
|
|
if (!this.world.isClientSide && !this.activeContainer.canUse(this)) {
|
2016-02-29 23:09:49 +00:00
|
|
|
this.closeInventory();
|
|
|
|
this.activeContainer = this.defaultContainer;
|
|
|
|
--
|
2019-04-05 04:52:02 +00:00
|
|
|
2.21.0
|
2016-02-29 23:09:49 +00:00
|
|
|
|