2016-03-25 04:59:37 +00:00
|
|
|
From 456394786a5214ac55eb69b4deb8e28e53338011 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-02-29 23:09:49 +00:00
|
|
|
index 675cdc0..8c23ce3 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-02-29 23:09:49 +00:00
|
|
|
@@ -166,7 +166,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-03-25 04:59:37 +00:00
|
|
|
2.7.1.windows.2
|
2015-08-05 00:57:17 +00:00
|
|
|
|