Redwood trees now require a 3x3 of redwood saplings
This commit is contained in:
parent
06e8b60240
commit
fa832bb8b0
1 changed files with 3 additions and 2 deletions
|
@ -124,8 +124,9 @@ public class BlockBOPColorizedSapling extends BlockSapling
|
|||
break;
|
||||
|
||||
case 3: // Redwood Tree
|
||||
obj = new WorldGenRedwoodTree2(false);
|
||||
break;
|
||||
if (this.isSameSapling(world, x + 1, y, z, 3) && this.isSameSapling(world, x - 1, y, z, 3) && this.isSameSapling(world, x, y, z + 1, 3) && this.isSameSapling(world, x, y, z - 1, 3) && this.isSameSapling(world, x + 1, y, z + 1, 3) && this.isSameSapling(world, x + 1, y, z - 1, 3) && this.isSameSapling(world, x - 1, y, z + 1, 3) && this.isSameSapling(world, x - 1, y, z - 1, 3))
|
||||
obj = new WorldGenRedwoodTree2(false);
|
||||
break;
|
||||
|
||||
case 4: // Willow Tree
|
||||
obj = new WorldGenWillow();
|
||||
|
|
Loading…
Reference in a new issue