Skip to content

Commit

Permalink
Revert broken fix for #758
Browse files Browse the repository at this point in the history
  • Loading branch information
Harleyoc1 committed Mar 31, 2023
1 parent ac57db8 commit 5379304
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public BranchBlock(ResourceLocation name, Material material) {
* @param name name of branch, without a {@code _branch} suffix
*/
public BranchBlock(ResourceLocation name, Properties properties) {
super(properties.dynamicShape()); //removes drops from block
super(properties); //removes drops from block
lootTableSupplier = new LootTableSupplier("trees/branches/", name);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,7 @@ public SurfaceRootBlock(Material material, Family family) {
// .harvestTool(ToolType.AXE)
// .harvestLevel(0)
.strength(2.5f, 1.0F)
.sound(SoundType.WOOD)
.dynamicShape());
.sound(SoundType.WOOD));

this.family = family;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public int getRadius() {
}

public TrunkShellBlock() {
super(Block.Properties.of(Material.WOOD).dynamicShape());
super(Block.Properties.of(Material.WOOD));
registerDefaultState(defaultBlockState().setValue(WATERLOGGED, false));
}

Expand Down

0 comments on commit 5379304

Please sign in to comment.