aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/server/0945-Configurable-max-block-fluid-ticks.patch
diff options
context:
space:
mode:
authorJakub Zacek <[email protected]>2024-07-15 23:35:51 +0200
committerGitHub <[email protected]>2024-07-15 17:35:51 -0400
commit2cd8c461af74f0a524878dcdffba86cd105c48c6 (patch)
treeac107a76fe3d6cdd2e6ef5804ef3cba152957e4c /patches/server/0945-Configurable-max-block-fluid-ticks.patch
parentb57b24d549c65ddc5eb3edcc1ecc6aad2826dbd8 (diff)
downloadPaper-2cd8c461af74f0a524878dcdffba86cd105c48c6.tar.gz
Paper-2cd8c461af74f0a524878dcdffba86cd105c48c6.zip
Add OMINOUS_ITEM_SPAWNER SpawnReason (#10897)
Diffstat (limited to 'patches/server/0945-Configurable-max-block-fluid-ticks.patch')
-rw-r--r--patches/server/0945-Configurable-max-block-fluid-ticks.patch22
1 files changed, 22 insertions, 0 deletions
diff --git a/patches/server/0945-Configurable-max-block-fluid-ticks.patch b/patches/server/0945-Configurable-max-block-fluid-ticks.patch
new file mode 100644
index 0000000000..02e6a701ce
--- /dev/null
+++ b/patches/server/0945-Configurable-max-block-fluid-ticks.patch
@@ -0,0 +1,22 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: Gero <[email protected]>
+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
+index 10063efb983dcef6dd0a9d55ecff49c26371bbb1..4d7e234d379a451c4bb53bc2fcdf22cb191f8d1a 100644
+--- a/src/main/java/net/minecraft/server/level/ServerLevel.java
++++ b/src/main/java/net/minecraft/server/level/ServerLevel.java
+@@ -501,9 +501,9 @@ public class ServerLevel extends Level implements WorldGenLevel {
+ 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();
+ }
+ this.timings.scheduledBlocks.stopTiming(); // Paper