2019-06-25 03:47:58 +02:00
|
|
|
From 91280bfceb4e92ed99055b27ca39f2493c82b7bd 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
|
2019-06-06 17:36:57 +02:00
|
|
|
index e4e00e2e1c..d663b15ceb 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
|
2019-04-25 08:53:51 +02:00
|
|
|
@@ -171,4 +171,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
|
2019-06-25 03:47:58 +02:00
|
|
|
index b907600db9..462c666735 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
|
2019-05-06 04:58:04 +02:00
|
|
|
@@ -72,6 +72,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;
|
2019-06-25 03:47:58 +02:00
|
|
|
@@ -351,7 +352,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
|
2017-09-18 13:04:01 +02:00
|
|
|
if (!this.world.isClientSide && !this.activeContainer.canUse(this)) {
|
2016-03-01 00:09:49 +01:00
|
|
|
this.closeInventory();
|
|
|
|
this.activeContainer = this.defaultContainer;
|
|
|
|
--
|
2019-06-25 03:47:58 +02:00
|
|
|
2.22.0
|
2016-03-01 00:09:49 +01:00
|
|
|
|