Skip to content

Commit

Permalink
Reverted ore chsange in the wrong place
Browse files Browse the repository at this point in the history
  • Loading branch information
quiqueck committed Dec 4, 2021
1 parent c0b461d commit 789982a
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/main/java/ru/bclib/blocks/BaseOreBlock.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
import java.util.List;
import java.util.function.Supplier;

public class BaseOreBlock extends OreBlock implements BlockModelProvider, TagProvider {
public class BaseOreBlock extends OreBlock implements BlockModelProvider {
private final Supplier<Item> dropItem;
private final int minCount;
private final int maxCount;
Expand Down Expand Up @@ -101,9 +101,4 @@ public static List<ItemStack> getDroppedItems(ItemLike block, Item dropItem, int
public BlockModel getItemModel(ResourceLocation resourceLocation) {
return getBlockModel(resourceLocation, defaultBlockState());
}

@Override
public void addTags(List<Named<Block>> blockTags, List<Named<Item>> itemTags) {
blockTags.add(TagAPI.MINEABLE_PICKAXE);
}
}

0 comments on commit 789982a

Please sign in to comment.