Paper/patches/server/0776-Add-fire-tick-delay-option.patch

35 lines
2.0 KiB
Diff
Raw Normal View History

2022-10-23 00:57:09 +02:00
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: VytskaLT <VytskaLT@protonmail.com>
Date: Wed, 22 Jun 2022 14:34:28 +0300
Subject: [PATCH] Add fire-tick-delay option
diff --git a/src/main/java/net/minecraft/world/level/block/FireBlock.java b/src/main/java/net/minecraft/world/level/block/FireBlock.java
2024-04-24 23:23:56 +02:00
index 5dad1aa26a8908cba6a08398a4bad27f31d4c2c0..4d467ecf0dd8006b9fa4fb8fb5aadc0622a1e512 100644
2022-10-23 00:57:09 +02:00
--- a/src/main/java/net/minecraft/world/level/block/FireBlock.java
+++ b/src/main/java/net/minecraft/world/level/block/FireBlock.java
2024-02-01 10:15:57 +01:00
@@ -171,7 +171,7 @@ public class FireBlock extends BaseFireBlock {
2022-10-23 00:57:09 +02:00
@Override
2024-04-24 23:23:56 +02:00
protected void tick(BlockState state, ServerLevel world, BlockPos pos, RandomSource random) {
2022-10-23 00:57:09 +02:00
- world.scheduleTick(pos, (Block) this, FireBlock.getFireTickDelay(world.random));
2024-04-24 23:23:56 +02:00
+ world.scheduleTick(pos, this, FireBlock.getFireTickDelay(world)); // Paper - Add fire-tick-delay option
2022-10-23 00:57:09 +02:00
if (world.getGameRules().getBoolean(GameRules.RULE_DOFIRETICK)) {
if (!state.canSurvive(world, pos)) {
2023-10-27 01:34:58 +02:00
this.fireExtinguished(world, pos); // CraftBukkit - invalid place location
2024-02-01 10:15:57 +01:00
@@ -372,11 +372,11 @@ public class FireBlock extends BaseFireBlock {
2024-04-24 23:23:56 +02:00
protected void onPlace(BlockState state, Level world, BlockPos pos, BlockState oldState, boolean notify, net.minecraft.world.item.context.UseOnContext context) {
2024-02-01 10:15:57 +01:00
super.onPlace(state, world, pos, oldState, notify, context);
2024-04-24 23:23:56 +02:00
// Paper end - UseOnContext param
2024-02-01 10:15:57 +01:00
- world.scheduleTick(pos, (Block) this, FireBlock.getFireTickDelay(world.random));
2024-04-24 23:23:56 +02:00
+ world.scheduleTick(pos, this, FireBlock.getFireTickDelay(world)); // Paper - Add fire-tick-delay option
2022-10-23 00:57:09 +02:00
}
- private static int getFireTickDelay(RandomSource random) {
- return 30 + random.nextInt(10);
2024-02-01 10:15:57 +01:00
+ private static int getFireTickDelay(Level world) { // Paper - Add fire-tick-delay option
+ return world.paperConfig().environment.fireTickDelay + world.random.nextInt(10); // Paper - Add fire-tick-delay option
2022-10-23 00:57:09 +02:00
}
@Override