Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit 2ce4f47

Browse files
committed
fixed ores and small ores not having the non material ores and small_ores tag
1 parent dd5fe6e commit 2ce4f47

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

common/src/main/java/muramasa/antimatter/datagen/providers/AntimatterBlockTagProvider.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,8 @@ protected void processTags(String domain) {
4545
AntimatterAPI.all(BlockOre.class, o -> {
4646
this.tag(getForgelikeBlockTag(String.join("", getConventionalStoneType(o.getStoneType()), "_", getConventionalMaterialType(o.getOreType()), "/", o.getMaterial().getId()))).add(o).replace(replace);
4747
this.tag(getForgelikeBlockTag(String.join("", getConventionalMaterialType(o.getOreType()), "/", o.getMaterial().getId()))).add(o).replace(replace);
48+
this.tag(getForgelikeBlockTag(getConventionalMaterialType(o.getOreType()))).add(o).replace(replace);
49+
this.tag(getForgelikeBlockTag(getConventionalStoneType(o.getStoneType()) + "_" + getConventionalMaterialType(o.getOreType()))).add(o).replace(replace);
4850

4951
if (o.getStoneType() == AntimatterStoneTypes.SAND || o.getStoneType() == AntimatterStoneTypes.SAND_RED || o.getStoneType() == AntimatterStoneTypes.GRAVEL)
5052
this.tag(BlockTags.MINEABLE_WITH_SHOVEL).add(o).replace(replace);

0 commit comments

Comments
 (0)