From 5b6e4eebea72939adffbc97c153ecaea7d83ba6a Mon Sep 17 00:00:00 2001 From: Ellpeck Date: Sun, 26 Sep 2021 16:47:01 +0200 Subject: [PATCH] fixed gold powder not being used when placed on wood logs Closes #217 --- .../ellpeck/naturesaura/blocks/tiles/TileEntityWoodStand.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/de/ellpeck/naturesaura/blocks/tiles/TileEntityWoodStand.java b/src/main/java/de/ellpeck/naturesaura/blocks/tiles/TileEntityWoodStand.java index 2274b050..4c94e5b4 100644 --- a/src/main/java/de/ellpeck/naturesaura/blocks/tiles/TileEntityWoodStand.java +++ b/src/main/java/de/ellpeck/naturesaura/blocks/tiles/TileEntityWoodStand.java @@ -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)); if (this.timer >= this.recipe.time) { - recurseTreeDestruction(this.world, this.ritualPos, this.ritualPos, true, false); Multiblocks.TREE_RITUAL.forEach(this.ritualPos, 'G', (pos, matcher) -> { this.world.setBlockState(pos, Blocks.AIR.getDefaultState()); return true; }); + recurseTreeDestruction(this.world, this.ritualPos, this.ritualPos, true, false); ItemEntity item = new ItemEntity(this.world, this.ritualPos.getX() + 0.5, this.ritualPos.getY() + 4.5, this.ritualPos.getZ() + 0.5,