aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/server/0234-Configurable-speed-for-water-flowing-over-lava.patch
diff options
context:
space:
mode:
Diffstat (limited to 'patches/server/0234-Configurable-speed-for-water-flowing-over-lava.patch')
-rw-r--r--patches/server/0234-Configurable-speed-for-water-flowing-over-lava.patch52
1 files changed, 52 insertions, 0 deletions
diff --git a/patches/server/0234-Configurable-speed-for-water-flowing-over-lava.patch b/patches/server/0234-Configurable-speed-for-water-flowing-over-lava.patch
new file mode 100644
index 0000000000..fafdd583ab
--- /dev/null
+++ b/patches/server/0234-Configurable-speed-for-water-flowing-over-lava.patch
@@ -0,0 +1,52 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: Byteflux <[email protected]>
+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
+index 6d24989965e5215c1e256444a868633cf2772aa3..84623c632d8c2f0fa7ec939c711316d757117d23 100644
+--- a/src/main/java/net/minecraft/world/level/block/LiquidBlock.java
++++ b/src/main/java/net/minecraft/world/level/block/LiquidBlock.java
+@@ -138,11 +138,31 @@ public class LiquidBlock extends Block implements BucketPickup {
+ @Override
+ protected void onPlace(BlockState state, Level world, BlockPos pos, BlockState oldState, boolean notify) {
+ if (this.shouldSpreadLiquid(world, pos, state)) {
+- world.scheduleTick(pos, state.getFluidState().getType(), this.fluid.getTickDelay(world));
++ world.scheduleTick(pos, state.getFluidState().getType(), this.getFlowSpeed(world, pos)); // Paper - Configurable speed for water flowing over lava
+ }
+
+ }
+
++ // Paper start - Configurable speed for water flowing over lava
++ public int getFlowSpeed(Level world, BlockPos blockposition) {
++ if (net.minecraft.core.registries.BuiltInRegistries.FLUID.wrapAsHolder(this.fluid).is(FluidTags.WATER)) {
++ if (
++ isLava(world, blockposition.north(1)) ||
++ isLava(world, blockposition.south(1)) ||
++ isLava(world, blockposition.west(1)) ||
++ isLava(world, blockposition.east(1))
++ ) {
++ return world.paperConfig().environment.waterOverLavaFlowSpeed;
++ }
++ }
++ return this.fluid.getTickDelay(world);
++ }
++ private static boolean isLava(Level world, BlockPos blockPos) {
++ final FluidState fluidState = world.getFluidIfLoaded(blockPos);
++ return fluidState != null && fluidState.is(FluidTags.LAVA);
++ }
++ // Paper end - Configurable speed for water flowing over lava
++
+ @Override
+ protected BlockState updateShape(BlockState state, Direction direction, BlockState neighborState, LevelAccessor world, BlockPos pos, BlockPos neighborPos) {
+ if (state.getFluidState().isSource() || neighborState.getFluidState().isSource()) {
+@@ -155,7 +175,7 @@ public class LiquidBlock extends Block implements BucketPickup {
+ @Override
+ protected void neighborChanged(BlockState state, Level world, BlockPos pos, Block sourceBlock, BlockPos sourcePos, boolean notify) {
+ if (this.shouldSpreadLiquid(world, pos, state)) {
+- world.scheduleTick(pos, state.getFluidState().getType(), this.fluid.getTickDelay(world));
++ world.scheduleTick(pos, state.getFluidState().getType(), this.getFlowSpeed(world, pos)); // Paper - Configurable speed for water flowing over lava
+ }
+
+ }