2021-06-11 14:02:28 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Byteflux <byte@byteflux.net>
|
|
|
|
Date: Wed, 8 Aug 2018 16:33:21 -0600
|
|
|
|
Subject: [PATCH] Configurable speed for water flowing over lava
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/world/level/block/LiquidBlock.java b/src/main/java/net/minecraft/world/level/block/LiquidBlock.java
|
2024-01-21 17:39:05 +01:00
|
|
|
index 82afefbbc3b9d3571792d66e6d4f9d687971aa66..9b3dcf1a4d4cece92a629506d341f6bfe79d13d0 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/net/minecraft/world/level/block/LiquidBlock.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/level/block/LiquidBlock.java
|
2023-12-05 23:12:48 +01:00
|
|
|
@@ -140,11 +140,31 @@ public class LiquidBlock extends Block implements BucketPickup {
|
2021-06-11 14:02:28 +02:00
|
|
|
@Override
|
|
|
|
public void onPlace(BlockState state, Level world, BlockPos pos, BlockState oldState, boolean notify) {
|
|
|
|
if (this.shouldSpreadLiquid(world, pos, state)) {
|
2021-11-23 16:50:18 +01:00
|
|
|
- world.scheduleTick(pos, state.getFluidState().getType(), this.fluid.getTickDelay(world));
|
2024-01-21 17:39:05 +01:00
|
|
|
+ world.scheduleTick(pos, state.getFluidState().getType(), this.getFlowSpeed(world, pos)); // Paper - Configurable speed for water flowing over lava
|
2021-06-11 14:02:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2024-01-21 17:39:05 +01:00
|
|
|
+ // Paper start - Configurable speed for water flowing over lava
|
2021-06-11 14:02:28 +02:00
|
|
|
+ public int getFlowSpeed(Level world, BlockPos blockposition) {
|
2023-06-07 23:46:56 +02:00
|
|
|
+ if (net.minecraft.core.registries.BuiltInRegistries.FLUID.wrapAsHolder(this.fluid).is(FluidTags.WATER)) {
|
2021-06-11 14:02:28 +02:00
|
|
|
+ if (
|
2023-06-07 23:46:56 +02:00
|
|
|
+ isLava(world, blockposition.north(1)) ||
|
|
|
|
+ isLava(world, blockposition.south(1)) ||
|
|
|
|
+ isLava(world, blockposition.west(1)) ||
|
|
|
|
+ isLava(world, blockposition.east(1))
|
2021-06-11 14:02:28 +02:00
|
|
|
+ ) {
|
2022-06-09 10:51:45 +02:00
|
|
|
+ return world.paperConfig().environment.waterOverLavaFlowSpeed;
|
2021-06-11 14:02:28 +02:00
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ return this.fluid.getTickDelay(world);
|
|
|
|
+ }
|
2023-06-07 23:46:56 +02:00
|
|
|
+ private static boolean isLava(Level world, BlockPos blockPos) {
|
|
|
|
+ final FluidState fluidState = world.getFluidIfLoaded(blockPos);
|
|
|
|
+ return fluidState != null && fluidState.is(FluidTags.LAVA);
|
|
|
|
+ }
|
2024-01-21 17:39:05 +01:00
|
|
|
+ // Paper end - Configurable speed for water flowing over lava
|
2021-06-11 14:02:28 +02:00
|
|
|
+
|
|
|
|
@Override
|
2021-06-13 01:45:00 +02:00
|
|
|
public BlockState updateShape(BlockState state, Direction direction, BlockState neighborState, LevelAccessor world, BlockPos pos, BlockPos neighborPos) {
|
|
|
|
if (state.getFluidState().isSource() || neighborState.getFluidState().isSource()) {
|
2023-12-05 23:12:48 +01:00
|
|
|
@@ -157,7 +177,7 @@ public class LiquidBlock extends Block implements BucketPickup {
|
2021-06-11 14:02:28 +02:00
|
|
|
@Override
|
2022-06-07 23:45:11 +02:00
|
|
|
public void neighborChanged(BlockState state, Level world, BlockPos pos, Block sourceBlock, BlockPos sourcePos, boolean notify) {
|
2021-06-11 14:02:28 +02:00
|
|
|
if (this.shouldSpreadLiquid(world, pos, state)) {
|
2021-11-23 16:50:18 +01:00
|
|
|
- world.scheduleTick(pos, state.getFluidState().getType(), this.fluid.getTickDelay(world));
|
2024-01-21 17:39:05 +01:00
|
|
|
+ world.scheduleTick(pos, state.getFluidState().getType(), this.getFlowSpeed(world, pos)); // Paper - Configurable speed for water flowing over lava
|
2021-06-11 14:02:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|