mirror of
https://github.com/Ellpeck/NaturesAura.git
synced 2024-11-22 11:53:29 +01:00
parent
99fc5e7cc9
commit
5b6e4eebea
1 changed files with 1 additions and 1 deletions
|
@ -78,11 +78,11 @@ public class TileEntityWoodStand extends TileEntityImpl implements ITickableTile
|
||||||
new PacketParticles(this.ritualPos.getX(), this.ritualPos.getY(), this.ritualPos.getZ(), PacketParticles.Type.TR_GOLD_POWDER));
|
new PacketParticles(this.ritualPos.getX(), this.ritualPos.getY(), this.ritualPos.getZ(), PacketParticles.Type.TR_GOLD_POWDER));
|
||||||
|
|
||||||
if (this.timer >= this.recipe.time) {
|
if (this.timer >= this.recipe.time) {
|
||||||
recurseTreeDestruction(this.world, this.ritualPos, this.ritualPos, true, false);
|
|
||||||
Multiblocks.TREE_RITUAL.forEach(this.ritualPos, 'G', (pos, matcher) -> {
|
Multiblocks.TREE_RITUAL.forEach(this.ritualPos, 'G', (pos, matcher) -> {
|
||||||
this.world.setBlockState(pos, Blocks.AIR.getDefaultState());
|
this.world.setBlockState(pos, Blocks.AIR.getDefaultState());
|
||||||
return true;
|
return true;
|
||||||
});
|
});
|
||||||
|
recurseTreeDestruction(this.world, this.ritualPos, this.ritualPos, true, false);
|
||||||
|
|
||||||
ItemEntity item = new ItemEntity(this.world,
|
ItemEntity item = new ItemEntity(this.world,
|
||||||
this.ritualPos.getX() + 0.5, this.ritualPos.getY() + 4.5, this.ritualPos.getZ() + 0.5,
|
this.ritualPos.getX() + 0.5, this.ritualPos.getY() + 4.5, this.ritualPos.getZ() + 0.5,
|
||||||
|
|
Loading…
Reference in a new issue