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

50 lines
2 KiB
Diff
Raw Normal View History

2016-12-20 22:34:27 +00:00
From 05da6da19a804f28d5a78f078ce02f86366013f9 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
2016-11-17 02:23:38 +00:00
index 57480f5..b2b94b8 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
2016-11-17 02:23:38 +00:00
@@ -225,4 +225,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
2016-12-20 22:34:27 +00:00
index 80e7105..2c8a21e 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
2016-05-28 02:22:18 +00:00
@@ -65,6 +65,7 @@ public class EntityPlayer extends EntityHuman implements ICrafting {
this.viewDistance = viewDistance;
}
// Paper end
2016-02-29 23:09:49 +00:00
+ private int containerUpdateDelay; // Paper
// CraftBukkit start
public String displayName;
2016-12-20 22:34:27 +00:00
@@ -227,7 +228,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
if (!this.world.isClientSide && !this.activeContainer.a((EntityHuman) this)) {
this.closeInventory();
this.activeContainer = this.defaultContainer;
--
2.9.3
2016-02-29 23:09:49 +00:00