3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-11-17 05:20:05 +01:00

Fixed leaf decay issue - this fixes BUKKIT-948 and BUKKIT-871

Dieser Commit ist enthalten in:
Nathan Adams 2012-03-03 10:14:53 +00:00
Ursprung c6273810a1
Commit 90fae3b579

Datei anzeigen

@ -102,19 +102,19 @@ public class WorldGenTrees extends WorldGenerator {
if (k1 == 0 || k1 == Block.LEAVES.id) { if (k1 == 0 || k1 == Block.LEAVES.id) {
this.setTypeAndData(world, i, j + j1, k, Block.LOG.id, this.c); this.setTypeAndData(world, i, j + j1, k, Block.LOG.id, this.c);
if (this.b && j1 > 0) { if (this.b && j1 > 0) {
if (random.nextInt(3) > 0 && (world).isEmpty(i - 1, j + j1, k)) { if (random.nextInt(3) > 0 && world.isEmpty(i - 1, j + j1, k)) {
this.setTypeAndData(world, i - 1, j + j1, k, Block.VINE.id, 8); this.setTypeAndData(world, i - 1, j + j1, k, Block.VINE.id, 8);
} }
if (random.nextInt(3) > 0 && (world).isEmpty(i + 1, j + j1, k)) { if (random.nextInt(3) > 0 && world.isEmpty(i + 1, j + j1, k)) {
this.setTypeAndData(world, i + 1, j + j1, k, Block.VINE.id, 2); this.setTypeAndData(world, i + 1, j + j1, k, Block.VINE.id, 2);
} }
if (random.nextInt(3) > 0 && (world).isEmpty(i, j + j1, k - 1)) { if (random.nextInt(3) > 0 && world.isEmpty(i, j + j1, k - 1)) {
this.setTypeAndData(world, i, j + j1, k - 1, Block.VINE.id, 1); this.setTypeAndData(world, i, j + j1, k - 1, Block.VINE.id, 1);
} }
if (random.nextInt(3) > 0 && (world).isEmpty(i, j + j1, k + 1)) { if (random.nextInt(3) > 0 && world.isEmpty(i, j + j1, k + 1)) {
this.setTypeAndData(world, i, j + j1, k + 1, Block.VINE.id, 4); this.setTypeAndData(world, i, j + j1, k + 1, Block.VINE.id, 4);
} }
} }
@ -162,7 +162,7 @@ public class WorldGenTrees extends WorldGenerator {
// CraftBukkit - Changed world to BlockChangeDelegate // CraftBukkit - Changed world to BlockChangeDelegate
private void a(BlockChangeDelegate world, int i, int j, int k, int l) { private void a(BlockChangeDelegate world, int i, int j, int k, int l) {
world.setRawTypeIdAndData(i, j, k, Block.VINE.id, l); // CraftBukkit - "raw" ((World)world).setTypeIdAndData(i, j, k, Block.VINE.id, l); // CraftBukkit - Cast
int i1 = 4; int i1 = 4;
while (true) { while (true) {
@ -171,7 +171,7 @@ public class WorldGenTrees extends WorldGenerator {
return; return;
} }
world.setRawTypeIdAndData(i, j, k, Block.VINE.id, l); // CraftBukkit - "raw" ((World)world).setRawTypeIdAndData(i, j, k, Block.VINE.id, l); // CraftBukkit - Cast
--i1; --i1;
} }
} }