2016-03-31 02:50:23 +02:00
|
|
|
From dd8cd2c8b782274b95bb4a1318b35823783594fb Mon Sep 17 00:00:00 2001
|
2015-08-05 02:57:17 +02:00
|
|
|
From: Iceee <andrew@opticgaming.tv>
|
2016-03-01 00:09:49 +01:00
|
|
|
Date: Wed, 2 Mar 2016 23:38:52 -0600
|
2015-08-05 02:57:17 +02:00
|
|
|
Subject: [PATCH] Fix lava/water some times creating air instead of cobblestone
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/BlockFluids.java b/src/main/java/net/minecraft/server/BlockFluids.java
|
2016-03-31 02:50:23 +02:00
|
|
|
index cdbb7a4..c5f052a 100644
|
2015-08-05 02:57:17 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/BlockFluids.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/BlockFluids.java
|
2016-03-01 00:09:49 +01:00
|
|
|
@@ -166,7 +166,7 @@ public abstract class BlockFluids extends Block {
|
2015-08-05 02:57:17 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
- if (integer.intValue() <= 4) {
|
2016-03-01 00:09:49 +01:00
|
|
|
+ if (integer.intValue() > 0) { // Paper
|
2015-08-05 02:57:17 +02:00
|
|
|
world.setTypeUpdate(blockposition, Blocks.COBBLESTONE.getBlockData());
|
|
|
|
this.fizz(world, blockposition);
|
|
|
|
return true;
|
|
|
|
--
|
2016-03-31 02:50:23 +02:00
|
|
|
2.8.0
|
2015-08-05 02:57:17 +02:00
|
|
|
|