Skip to content

Commit

Permalink
fixed ores and small ores not having the non material ores and small_…
Browse files Browse the repository at this point in the history
…ores tag
  • Loading branch information
Trinsdar committed Jan 12, 2025
1 parent dd5fe6e commit 2ce4f47
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ protected void processTags(String domain) {
AntimatterAPI.all(BlockOre.class, o -> {
this.tag(getForgelikeBlockTag(String.join("", getConventionalStoneType(o.getStoneType()), "_", getConventionalMaterialType(o.getOreType()), "/", o.getMaterial().getId()))).add(o).replace(replace);
this.tag(getForgelikeBlockTag(String.join("", getConventionalMaterialType(o.getOreType()), "/", o.getMaterial().getId()))).add(o).replace(replace);
this.tag(getForgelikeBlockTag(getConventionalMaterialType(o.getOreType()))).add(o).replace(replace);
this.tag(getForgelikeBlockTag(getConventionalStoneType(o.getStoneType()) + "_" + getConventionalMaterialType(o.getOreType()))).add(o).replace(replace);

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

0 comments on commit 2ce4f47

Please sign in to comment.