2024-03-03 21:43:00 +01:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Gero <gecam59@gmail.com>
|
|
|
|
Date: Mon, 19 Feb 2024 17:39:59 +0100
|
|
|
|
Subject: [PATCH] Configurable max block/fluid ticks
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/level/ServerLevel.java b/src/main/java/net/minecraft/server/level/ServerLevel.java
|
2024-12-05 11:18:29 +01:00
|
|
|
index 2b934a8212b71d60303f3f24b3ce4a5074a9ebab..dce6f7e23219f655a1085cc0aa33c31aeb5ce139 100644
|
2024-03-03 21:43:00 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/level/ServerLevel.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/level/ServerLevel.java
|
2024-12-03 20:34:55 +01:00
|
|
|
@@ -495,9 +495,9 @@ public class ServerLevel extends Level implements ServerEntityGetter, WorldGenLe
|
2024-03-03 21:43:00 +01:00
|
|
|
if (!this.isDebug() && flag) {
|
|
|
|
j = this.getGameTime();
|
|
|
|
gameprofilerfiller.push("blockTicks");
|
|
|
|
- this.blockTicks.tick(j, 65536, this::tickBlock);
|
|
|
|
+ this.blockTicks.tick(j, paperConfig().environment.maxBlockTicks, this::tickBlock); // Paper - configurable max block ticks
|
|
|
|
gameprofilerfiller.popPush("fluidTicks");
|
|
|
|
- this.fluidTicks.tick(j, 65536, this::tickFluid);
|
|
|
|
+ this.fluidTicks.tick(j, paperConfig().environment.maxFluidTicks, this::tickFluid); // Paper - configurable max fluid ticks
|
|
|
|
gameprofilerfiller.pop();
|
|
|
|
}
|
2024-10-27 18:11:15 +01:00
|
|
|
|