mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-03 09:19:38 +01:00
f6fba00cbc
Breaks the existing PlayerMoveEvent, to be re-worked soon
53 lines
2.1 KiB
Diff
53 lines
2.1 KiB
Diff
From 8eb107a8af1324f3431a30eedc601bb723d53eda Mon Sep 17 00:00:00 2001
|
|
From: Sudzzy <originmc@outlook.com>
|
|
Date: Thu, 23 Jul 2015 22:05:22 -0700
|
|
Subject: [PATCH] Configurable container update tick rate
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/EntityPlayer.java b/src/main/java/net/minecraft/server/EntityPlayer.java
|
|
index 4631ca1..1a2484d 100644
|
|
--- a/src/main/java/net/minecraft/server/EntityPlayer.java
|
|
+++ b/src/main/java/net/minecraft/server/EntityPlayer.java
|
|
@@ -65,6 +65,7 @@ public class EntityPlayer extends EntityHuman implements ICrafting {
|
|
// Spigot start
|
|
public boolean collidesWithEntities = true;
|
|
public int viewDistance; // PaperSpigot - Player view distance API
|
|
+ private int containerUpdateDelay; // PaperSpigot
|
|
|
|
@Override
|
|
public boolean ad()
|
|
@@ -197,8 +198,13 @@ public class EntityPlayer extends EntityHuman implements ICrafting {
|
|
if (this.noDamageTicks > 0) {
|
|
--this.noDamageTicks;
|
|
}
|
|
-
|
|
- this.activeContainer.b();
|
|
+
|
|
+ // PaperSpigot start - Configurable container update tick rate
|
|
+ if (--containerUpdateDelay <= 0) {
|
|
+ this.activeContainer.b();
|
|
+ containerUpdateDelay = world.paperSpigotConfig.containerUpdateTickRate;
|
|
+ }
|
|
+ // PaperSpigot end
|
|
if (!this.world.isClientSide && !this.activeContainer.a((EntityHuman) this)) {
|
|
this.closeInventory();
|
|
this.activeContainer = this.defaultContainer;
|
|
diff --git a/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java b/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java
|
|
index cde11b2..bd1b363 100644
|
|
--- a/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java
|
|
+++ b/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java
|
|
@@ -396,4 +396,10 @@ public class PaperSpigotWorldConfig
|
|
{
|
|
cacheChunkMaps = getBoolean( "cache-chunk-maps", false );
|
|
}
|
|
+
|
|
+ public int containerUpdateTickRate;
|
|
+ private void containerUpdateTickRate()
|
|
+ {
|
|
+ containerUpdateTickRate = getInt("container-update-tick-rate", 1);
|
|
+ }
|
|
}
|
|
--
|
|
2.4.5.windows.1
|
|
|