Reverted ore chsange in the wrong place
This commit is contained in:
parent
c0b461d92b
commit
789982a266
1 changed files with 1 additions and 6 deletions
|
@ -30,7 +30,7 @@ import java.util.Collections;
|
|||
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;
|
||||
|
@ -101,9 +101,4 @@ public class BaseOreBlock extends OreBlock implements BlockModelProvider, TagPro
|
|||
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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue