2016-09-11 02:42:47 +00:00
|
|
|
From 09fc25a75ad2b07d03779bba1a2e1daf5552f12a Mon Sep 17 00:00:00 2001
|
2015-08-05 00:57:17 +00:00
|
|
|
From: Iceee <andrew@opticgaming.tv>
|
2016-02-29 23:09:49 +00:00
|
|
|
Date: Wed, 2 Mar 2016 23:38:52 -0600
|
2015-08-05 00:57:17 +00: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-06-09 03:57:14 +00:00
|
|
|
index ddd5199..d7308dd 100644
|
2015-08-05 00:57:17 +00:00
|
|
|
--- a/src/main/java/net/minecraft/server/BlockFluids.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/BlockFluids.java
|
2016-05-12 02:07:46 +00:00
|
|
|
@@ -169,7 +169,7 @@ public abstract class BlockFluids extends Block {
|
2015-08-05 00:57:17 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
- if (integer.intValue() <= 4) {
|
2016-02-29 23:09:49 +00:00
|
|
|
+ if (integer.intValue() > 0) { // Paper
|
2015-08-05 00:57:17 +00:00
|
|
|
world.setTypeUpdate(blockposition, Blocks.COBBLESTONE.getBlockData());
|
|
|
|
this.fizz(world, blockposition);
|
|
|
|
return true;
|
|
|
|
--
|
2016-09-11 02:42:47 +00:00
|
|
|
2.10.0.windows.1
|
2015-08-05 00:57:17 +00:00
|
|
|
|