mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-15 04:05:50 -07:00
Remove changes to lava/water cobblestone gen
Unintended side effects in recent versions, this patch has likely outlived its usefulness. Closes GH-452
This commit is contained in:
@@ -1,20 +0,0 @@
|
|||||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Iceee <andrew@opticgaming.tv>
|
|
||||||
Date: Wed, 2 Mar 2016 23:38:52 -0600
|
|
||||||
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 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
|
|
||||||
--- a/src/main/java/net/minecraft/server/BlockFluids.java
|
|
||||||
+++ b/src/main/java/net/minecraft/server/BlockFluids.java
|
|
||||||
@@ -0,0 +0,0 @@ public abstract class BlockFluids extends Block {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
- if (integer.intValue() <= 4) {
|
|
||||||
+ if (integer.intValue() > 0) { // Paper
|
|
||||||
world.setTypeUpdate(blockposition, Blocks.COBBLESTONE.getBlockData());
|
|
||||||
this.fizz(world, blockposition);
|
|
||||||
return true;
|
|
||||||
--
|
|
Reference in New Issue
Block a user