2020-03-15 21:03:36 +01:00
|
|
|
From 56b1bf3608cef2c0324805e96628badabb82e420 Mon Sep 17 00:00:00 2001
|
2018-08-26 04:57:30 +02:00
|
|
|
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/com/destroystokyo/paper/PaperWorldConfig.java b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2020-01-18 18:28:32 +01:00
|
|
|
index bc3df01aa..487b0d5cd 100644
|
2018-08-26 04:57:30 +02:00
|
|
|
--- a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
|
|
|
+++ b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2020-01-18 18:28:32 +01:00
|
|
|
@@ -399,4 +399,10 @@ public class PaperWorldConfig {
|
2019-12-13 21:41:01 +01:00
|
|
|
this.armorStandTick = this.getBoolean("armor-stands-tick", this.armorStandTick);
|
|
|
|
log("ArmorStand ticking is " + (this.armorStandTick ? "enabled" : "disabled") + " by default");
|
2018-08-26 04:57:30 +02:00
|
|
|
}
|
2019-12-12 01:03:31 +01:00
|
|
|
+
|
2018-08-26 04:57:30 +02:00
|
|
|
+ public int waterOverLavaFlowSpeed;
|
|
|
|
+ private void waterOverLavaFlowSpeed() {
|
|
|
|
+ waterOverLavaFlowSpeed = getInt("water-over-lava-flow-speed", 5);
|
|
|
|
+ log("Water over lava flow speed: " + waterOverLavaFlowSpeed);
|
|
|
|
+ }
|
2019-12-12 01:03:31 +01:00
|
|
|
}
|
2018-08-26 04:57:30 +02:00
|
|
|
diff --git a/src/main/java/net/minecraft/server/BlockFluids.java b/src/main/java/net/minecraft/server/BlockFluids.java
|
2020-01-18 18:28:32 +01:00
|
|
|
index f56e14e1e..6d351f097 100644
|
2018-08-26 04:57:30 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/BlockFluids.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/BlockFluids.java
|
2019-12-12 01:03:31 +01:00
|
|
|
@@ -70,11 +70,28 @@ public class BlockFluids extends Block implements IFluidSource {
|
2019-05-05 10:33:44 +02:00
|
|
|
@Override
|
|
|
|
public void onPlace(IBlockData iblockdata, World world, BlockPosition blockposition, IBlockData iblockdata1, boolean flag) {
|
2018-08-26 04:57:30 +02:00
|
|
|
if (this.a(world, blockposition, iblockdata)) {
|
2019-12-12 01:03:31 +01:00
|
|
|
- world.getFluidTickList().a(blockposition, iblockdata.getFluid().getType(), this.a((IWorldReader) world));
|
|
|
|
+ world.getFluidTickList().a(blockposition, iblockdata.getFluid().getType(), this.getFlowSpeed(world, blockposition)); // Paper
|
2018-08-26 04:57:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2018-08-26 20:11:49 +02:00
|
|
|
+ // Paper start - Get flow speed. Throttle if its water and flowing adjacent to lava
|
2018-08-26 04:57:30 +02:00
|
|
|
+ public int getFlowSpeed(World world, BlockPosition blockposition) {
|
2018-08-26 20:11:49 +02:00
|
|
|
+ if (this.material == Material.WATER) {
|
|
|
|
+ if (
|
|
|
|
+ world.getMaterialIfLoaded(blockposition.north(1)) == Material.LAVA ||
|
|
|
|
+ world.getMaterialIfLoaded(blockposition.south(1)) == Material.LAVA ||
|
|
|
|
+ world.getMaterialIfLoaded(blockposition.west(1)) == Material.LAVA ||
|
|
|
|
+ world.getMaterialIfLoaded(blockposition.east(1)) == Material.LAVA
|
|
|
|
+ ) {
|
|
|
|
+ return world.paperConfig.waterOverLavaFlowSpeed;
|
|
|
|
+ }
|
2018-08-26 04:57:30 +02:00
|
|
|
+ }
|
|
|
|
+ return this.a(world);
|
|
|
|
+ }
|
2018-08-26 20:11:49 +02:00
|
|
|
+ // Paper end
|
2019-12-12 01:03:31 +01:00
|
|
|
+
|
2018-08-26 04:57:30 +02:00
|
|
|
+
|
2019-05-05 10:33:44 +02:00
|
|
|
@Override
|
2018-08-26 04:57:30 +02:00
|
|
|
public IBlockData updateState(IBlockData iblockdata, EnumDirection enumdirection, IBlockData iblockdata1, GeneratorAccess generatoraccess, BlockPosition blockposition, BlockPosition blockposition1) {
|
2019-12-12 01:03:31 +01:00
|
|
|
if (iblockdata.getFluid().isSource() || iblockdata1.getFluid().isSource()) {
|
|
|
|
@@ -87,7 +104,7 @@ public class BlockFluids extends Block implements IFluidSource {
|
2019-05-05 10:33:44 +02:00
|
|
|
@Override
|
|
|
|
public void doPhysics(IBlockData iblockdata, World world, BlockPosition blockposition, Block block, BlockPosition blockposition1, boolean flag) {
|
2018-08-26 04:57:30 +02:00
|
|
|
if (this.a(world, blockposition, iblockdata)) {
|
2019-12-12 01:03:31 +01:00
|
|
|
- world.getFluidTickList().a(blockposition, iblockdata.getFluid().getType(), this.a((IWorldReader) world));
|
|
|
|
+ world.getFluidTickList().a(blockposition, iblockdata.getFluid().getType(), this.getFlowSpeed(world, blockposition)); // Paper
|
2018-08-26 04:57:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
--
|
2020-03-15 21:03:36 +01:00
|
|
|
2.25.1
|
2018-08-26 04:57:30 +02:00
|
|
|
|