2020-05-06 09:48:49 +00:00
|
|
|
From 0000000000000000000000000000000000000000 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
|
2020-11-12 01:48:12 +00:00
|
|
|
index 4de86b09c6bc3c1974ce61b550ccb73d37f6f170..5a4c3a8c511f22c8c3240c9c7cd83a65119c1054 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
|
2020-11-12 01:48:12 +00:00
|
|
|
@@ -181,4 +181,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);
|
|
|
|
+ }
|
|
|
|
}
|
2021-03-16 07:19:45 +00:00
|
|
|
diff --git a/src/main/java/net/minecraft/server/level/EntityPlayer.java b/src/main/java/net/minecraft/server/level/EntityPlayer.java
|
|
|
|
index a9eb414843381e7697c46af4b68f61b68755afde..1f31104a1a350f3b53ce45b034cafe528d406291 100644
|
|
|
|
--- a/src/main/java/net/minecraft/server/level/EntityPlayer.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/level/EntityPlayer.java
|
|
|
|
@@ -209,6 +209,7 @@ public class EntityPlayer extends EntityHuman implements ICrafting {
|
2019-04-25 06:53:51 +00:00
|
|
|
public boolean e;
|
2018-09-09 18:38:27 +00:00
|
|
|
public int ping;
|
|
|
|
public boolean viewingCredits;
|
2016-02-29 23:09:49 +00:00
|
|
|
+ private int containerUpdateDelay; // Paper
|
|
|
|
|
|
|
|
// CraftBukkit start
|
|
|
|
public String displayName;
|
2021-03-16 07:19:45 +00:00
|
|
|
@@ -533,7 +534,12 @@ public class EntityPlayer extends EntityHuman implements ICrafting {
|
2016-02-29 23:09:49 +00:00
|
|
|
--this.noDamageTicks;
|
|
|
|
}
|
|
|
|
|
2019-04-25 06:53:51 +00:00
|
|
|
- this.activeContainer.c();
|
2016-02-29 23:09:49 +00:00
|
|
|
+ // Paper start - Configurable container update tick rate
|
|
|
|
+ if (--containerUpdateDelay <= 0) {
|
2019-04-25 06:53:51 +00:00
|
|
|
+ this.activeContainer.c();
|
2016-02-29 23:09:49 +00:00
|
|
|
+ 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;
|