Paper/Spigot-Server-Patches/0015-Configurable-speed-for-water-flowing-over-lava.patch

62 lines
2.6 KiB
Diff
Raw Normal View History

2016-11-17 02:23:38 +00:00
From eac74f310db6273e941e40504ba31fab0bbad29c Mon Sep 17 00:00:00 2001
2014-11-28 01:17:45 +00:00
From: Byteflux <byte@byteflux.net>
2016-02-29 23:09:49 +00:00
Date: Tue, 1 Mar 2016 14:27:13 -0600
2014-11-28 01:17:45 +00:00
Subject: [PATCH] Configurable speed for water flowing over lava
2016-02-29 23:09:49 +00:00
diff --git a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
2016-11-17 02:23:38 +00:00
index d44fdae..06d1527 100644
2016-02-29 23:09:49 +00:00
--- a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
+++ b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
2016-11-17 02:23:38 +00:00
@@ -137,4 +137,10 @@ public class PaperWorldConfig {
2016-02-29 23:09:49 +00:00
if (fallingBlockHeightNerf != 0) log("Falling Block Height Limit set to Y: " + fallingBlockHeightNerf);
if (entityTNTHeightNerf != 0) log("TNT Entity Height Limit set to Y: " + entityTNTHeightNerf);
}
+
+ public int waterOverLavaFlowSpeed;
+ private void waterOverLawFlowSpeed() {
+ waterOverLavaFlowSpeed = getInt("water-over-lava-flow-speed", 5);
+ log("Water over lava flow speed: " + waterOverLavaFlowSpeed);
+ }
}
2014-11-28 01:17:45 +00:00
diff --git a/src/main/java/net/minecraft/server/BlockFlowing.java b/src/main/java/net/minecraft/server/BlockFlowing.java
2016-11-17 02:23:38 +00:00
index 40c7b55..e9f73cd 100644
2014-11-28 01:17:45 +00:00
--- a/src/main/java/net/minecraft/server/BlockFlowing.java
+++ b/src/main/java/net/minecraft/server/BlockFlowing.java
@@ -35,7 +35,7 @@ public class BlockFlowing extends BlockFluids {
b0 = 2;
}
- int j = this.a(world);
2016-02-29 23:09:49 +00:00
+ int j = this.getFlowSpeed(world, blockposition); // Paper
2014-11-28 01:17:45 +00:00
int k;
if (i > 0) {
2016-02-29 23:09:49 +00:00
@@ -263,8 +263,22 @@ public class BlockFlowing extends BlockFluids {
2014-11-28 01:17:45 +00:00
public void onPlace(World world, BlockPosition blockposition, IBlockData iblockdata) {
if (!this.e(world, blockposition, iblockdata)) {
- world.a(blockposition, (Block) this, this.a(world));
2016-02-29 23:09:49 +00:00
+ world.a(blockposition, (Block) this, this.getFlowSpeed(world, blockposition)); // Paper
2014-11-28 01:17:45 +00:00
}
}
+
+ /**
2016-02-29 23:09:49 +00:00
+ * Paper - Get flow speed. Throttle if its water and flowing adjacent to lava
2014-11-28 01:17:45 +00:00
+ */
+ public int getFlowSpeed(World world, BlockPosition blockposition) {
2016-02-29 23:09:49 +00:00
+ if (this.material == Material.WATER && (
+ world.getType(blockposition.north(1)).getBlock().material == Material.LAVA ||
+ world.getType(blockposition.south(1)).getBlock().material == Material.LAVA ||
+ world.getType(blockposition.west(1)).getBlock().material == Material.LAVA ||
+ world.getType(blockposition.east(1)).getBlock().material == Material.LAVA)) {
+ return world.paperConfig.waterOverLavaFlowSpeed;
2014-11-28 01:17:45 +00:00
+ }
+ return super.a(world);
+ }
}
--
2016-11-17 02:23:38 +00:00
2.10.2
2014-11-28 01:17:45 +00:00