2015-09-13 02:57:39 +02:00
|
|
|
From dd49481b08dafe6d66cd27584b1e686fb3bc8d66 Mon Sep 17 00:00:00 2001
|
2015-08-05 02:57:17 +02:00
|
|
|
From: Iceee <andrew@opticgaming.tv>
|
|
|
|
Date: Tue, 4 Aug 2015 18:15:05 -0700
|
|
|
|
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
|
|
|
|
index b610450..db73f5d 100644
|
|
|
|
--- a/src/main/java/net/minecraft/server/BlockFluids.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/BlockFluids.java
|
|
|
|
@@ -154,7 +154,7 @@ public abstract class BlockFluids extends Block {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
- if (integer.intValue() <= 4) {
|
|
|
|
+ if (integer.intValue() > 0) { // PaperSpigot
|
|
|
|
world.setTypeUpdate(blockposition, Blocks.COBBLESTONE.getBlockData());
|
|
|
|
this.fizz(world, blockposition);
|
|
|
|
return true;
|
|
|
|
--
|
2015-09-13 02:57:39 +02:00
|
|
|
2.5.1
|
2015-08-05 02:57:17 +02:00
|
|
|
|