mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-01 17:01:56 +01: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:
parent
4bef47531a
commit
745be9013b
1 changed files with 0 additions and 20 deletions
|
@ -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;
|
||||
--
|
Loading…
Reference in a new issue