2017-04-29 02:25:52 +02:00
|
|
|
From 154ee18ea861801364d933168a27c5fcda6d6459 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
|
2017-03-25 04:18:58 +01:00
|
|
|
index 1bb956515..e6aae7317 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
|
2017-03-25 04:18:58 +01:00
|
|
|
@@ -219,4 +219,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
|
2017-04-29 02:25:52 +02:00
|
|
|
index b830f833f..bf3e46c35 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
|
2017-04-01 06:24:42 +02:00
|
|
|
@@ -68,6 +68,7 @@ public class EntityPlayer extends EntityHuman implements ICrafting {
|
2016-04-24 03:39:22 +02:00
|
|
|
this.viewDistance = viewDistance;
|
|
|
|
}
|
|
|
|
// Paper end
|
2016-03-01 00:09:49 +01:00
|
|
|
+ private int containerUpdateDelay; // Paper
|
|
|
|
|
|
|
|
// CraftBukkit start
|
|
|
|
public String displayName;
|
2017-04-29 02:25:52 +02:00
|
|
|
@@ -231,7 +232,12 @@ public class EntityPlayer extends EntityHuman implements ICrafting {
|
2016-03-01 00:09:49 +01: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
|
|
|
|
if (!this.world.isClientSide && !this.activeContainer.a((EntityHuman) this)) {
|
|
|
|
this.closeInventory();
|
|
|
|
this.activeContainer = this.defaultContainer;
|
|
|
|
--
|
2017-04-29 02:25:52 +02:00
|
|
|
2.12.2.windows.2
|
2016-03-01 00:09:49 +01:00
|
|
|
|