2018-01-11 06:31:19 +01:00
|
|
|
From ec63fe67dffe84268e752bf409cd3b1dfc9f1cb3 Mon Sep 17 00:00:00 2001
|
2016-03-01 00:09:49 +01:00
|
|
|
From: Byteflux <byte@byteflux.net>
|
|
|
|
Date: Wed, 2 Mar 2016 12:27:07 -0600
|
|
|
|
Subject: [PATCH] Configurable lava flow speed
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2018-01-11 06:31:19 +01:00
|
|
|
index 3b96b16f..e2d4f4bf 100644
|
2016-03-01 00:09:49 +01:00
|
|
|
--- a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
|
|
|
+++ b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2018-01-11 06:31:19 +01:00
|
|
|
@@ -184,4 +184,11 @@ public class PaperWorldConfig {
|
2016-03-01 00:09:49 +01:00
|
|
|
fastDrainLava = getBoolean("fast-drain.lava", false);
|
|
|
|
fastDrainWater = getBoolean("fast-drain.water", false);
|
|
|
|
}
|
|
|
|
+
|
|
|
|
+ public int lavaFlowSpeedNormal;
|
|
|
|
+ public int lavaFlowSpeedNether;
|
|
|
|
+ private void lavaFlowSpeeds() {
|
|
|
|
+ lavaFlowSpeedNormal = getInt("lava-flow-speed.normal", 30);
|
|
|
|
+ lavaFlowSpeedNether = getInt("lava-flow-speed.nether", 10);
|
|
|
|
+ }
|
|
|
|
}
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/BlockFlowing.java b/src/main/java/net/minecraft/server/BlockFlowing.java
|
2018-01-11 06:31:19 +01:00
|
|
|
index 3aaa19b2..739b9aac 100644
|
2016-03-01 00:09:49 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/BlockFlowing.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/BlockFlowing.java
|
2016-12-10 01:07:35 +01:00
|
|
|
@@ -272,6 +272,9 @@ public class BlockFlowing extends BlockFluids {
|
2016-03-01 00:09:49 +01:00
|
|
|
* Paper - Get flow speed. Throttle if its water and flowing adjacent to lava
|
|
|
|
*/
|
|
|
|
public int getFlowSpeed(World world, BlockPosition blockposition) {
|
|
|
|
+ if (this.material == Material.LAVA) {
|
2016-12-21 22:29:50 +01:00
|
|
|
+ return world.worldProvider.isSkyMissing() ? world.paperConfig.lavaFlowSpeedNether : world.paperConfig.lavaFlowSpeedNormal;
|
2016-03-01 00:09:49 +01:00
|
|
|
+ }
|
|
|
|
if (this.material == Material.WATER && (
|
|
|
|
world.getType(blockposition.north(1)).getBlock().material == Material.LAVA ||
|
|
|
|
world.getType(blockposition.south(1)).getBlock().material == Material.LAVA ||
|
2016-12-21 22:29:50 +01:00
|
|
|
diff --git a/src/main/java/net/minecraft/server/WorldProvider.java b/src/main/java/net/minecraft/server/WorldProvider.java
|
2018-01-11 06:31:19 +01:00
|
|
|
index f3eb2a79..d0265f96 100644
|
2016-12-21 22:29:50 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/WorldProvider.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/WorldProvider.java
|
|
|
|
@@ -114,6 +114,7 @@ public abstract class WorldProvider {
|
|
|
|
return this.f;
|
|
|
|
}
|
|
|
|
|
|
|
|
+ public final boolean isSkyMissing() { return this.n(); } // Paper - OBFHELPER
|
|
|
|
public boolean n() {
|
|
|
|
return this.e;
|
|
|
|
}
|
2016-03-01 00:09:49 +01:00
|
|
|
--
|
2018-01-11 06:31:19 +01:00
|
|
|
2.14.3
|
2016-03-01 00:09:49 +01:00
|
|
|
|