Skip to content

Commit

Permalink
Fix blocks not being breakable if AppliedE is not installed
Browse files Browse the repository at this point in the history
Closes #121
  • Loading branch information
62832 committed May 6, 2024
1 parent 75be7de commit 12c890f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public BlockTags(PackOutput output, CompletableFuture<HolderLookup.Provider> reg
@Override
protected void addTags(HolderLookup.Provider provider) {
for (var block : MEGABlocks.getBlocks()) {
tag(net.minecraft.tags.BlockTags.MINEABLE_WITH_PICKAXE).add(block.block());
tag(net.minecraft.tags.BlockTags.MINEABLE_WITH_PICKAXE).addOptional(block.id());
}

tag(MEGATags.SKY_STEEL_BLOCK).add(MEGABlocks.SKY_STEEL_BLOCK.block());
Expand Down

0 comments on commit 12c890f

Please sign in to comment.