mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-04 18:12:09 +01:00
28 lines
No EOL
1.6 KiB
Diff
28 lines
No EOL
1.6 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Thinkofdeath <thethinkofdeath@gmail.com>
|
|
Date: Mon, 20 Jan 2014 20:42:28 +0000
|
|
Subject: [PATCH] Don't let trees replace any block.
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/WorldGenForestTree.java b/src/main/java/net/minecraft/server/WorldGenForestTree.java
|
|
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
|
|
--- a/src/main/java/net/minecraft/server/WorldGenForestTree.java
|
|
+++ b/src/main/java/net/minecraft/server/WorldGenForestTree.java
|
|
@@ -0,0 +0,0 @@ public class WorldGenForestTree extends WorldGenTreeAbstract {
|
|
int k2;
|
|
|
|
for (k2 = 0; k2 < j2; ++k2) {
|
|
- this.a(world, new BlockPosition(blockposition.getX() + l1, k1 - k2 - 1, blockposition.getZ() + i2), Blocks.LOG2, EnumLogVariant.DARK_OAK.a() - 4);
|
|
+ // Spigot start
|
|
+ BlockPosition position = new BlockPosition(blockposition.getX() + l1, k1 - k2 - 1, blockposition.getZ() + i2);
|
|
+ Block bl = world.getType(position).getBlock();
|
|
+
|
|
+ if (bl.getMaterial() == Material.AIR || bl.getMaterial() == Material.LEAVES)
|
|
+ {
|
|
+ this.a(world, position, Blocks.LOG2, EnumLogVariant.DARK_OAK.a() - 4);
|
|
+ }
|
|
+ // Spigot end
|
|
}
|
|
|
|
int l2;
|
|
--
|