mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-23 23:57:43 +01:00
39 lines
1.7 KiB
Diff
39 lines
1.7 KiB
Diff
|
From ee7f178f022584989b8dd9d27b456e8d832ae0ca Mon Sep 17 00:00:00 2001
|
||
|
From: drXor <mcyoung@mit.edu>
|
||
|
Date: Sat, 9 Aug 2014 17:24:20 -0500
|
||
|
Subject: [PATCH] Configurable hanging tick
|
||
|
|
||
|
|
||
|
diff --git a/src/main/java/net/minecraft/server/EntityHanging.java b/src/main/java/net/minecraft/server/EntityHanging.java
|
||
|
index eec465b..3b6d152 100644
|
||
|
--- a/src/main/java/net/minecraft/server/EntityHanging.java
|
||
|
+++ b/src/main/java/net/minecraft/server/EntityHanging.java
|
||
|
@@ -102,7 +102,7 @@ public abstract class EntityHanging extends Entity {
|
||
|
this.lastX = this.locX;
|
||
|
this.lastY = this.locY;
|
||
|
this.lastZ = this.locZ;
|
||
|
- if (this.e++ == 100 && !this.world.isStatic) {
|
||
|
+ if (this.e++ == this.world.paperSpigotConfig.hangingTickFrequency && !this.world.isStatic) { // PaperSpigot - 100 -> this.world.paperSpigotConfig.hangingTickFrequency
|
||
|
this.e = 0;
|
||
|
if (!this.dead && !this.survives()) {
|
||
|
// CraftBukkit start - fire break events
|
||
|
diff --git a/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java b/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java
|
||
|
index 256316e..16eb1ca 100644
|
||
|
--- a/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java
|
||
|
+++ b/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java
|
||
|
@@ -163,4 +163,11 @@ public class PaperSpigotWorldConfig
|
||
|
waterOverLavaFlowSpeed = getInt( "water-over-lava-flow-speed", 5 );
|
||
|
log( "Water over lava flow speed: " + waterOverLavaFlowSpeed);
|
||
|
}
|
||
|
+
|
||
|
+ public int hangingTickFrequency;
|
||
|
+ private void hangingTickSpeed()
|
||
|
+ {
|
||
|
+ hangingTickFrequency = getInt( "hanging-tick-frequency", 100);
|
||
|
+ log( "Hanging entities tick frequency: " + hangingTickFrequency);
|
||
|
+ }
|
||
|
}
|
||
|
--
|
||
|
1.9.1
|
||
|
|