From 2ce4f47a35bfbb6fdb6cfcf84b2d189e70cb1e75 Mon Sep 17 00:00:00 2001 From: trinsdar <30245301+Trinsdar@users.noreply.github.com> Date: Sun, 12 Jan 2025 12:17:48 -0500 Subject: [PATCH] fixed ores and small ores not having the non material ores and small_ores tag --- .../datagen/providers/AntimatterBlockTagProvider.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/common/src/main/java/muramasa/antimatter/datagen/providers/AntimatterBlockTagProvider.java b/common/src/main/java/muramasa/antimatter/datagen/providers/AntimatterBlockTagProvider.java index 53df20eb3..02b551a7e 100644 --- a/common/src/main/java/muramasa/antimatter/datagen/providers/AntimatterBlockTagProvider.java +++ b/common/src/main/java/muramasa/antimatter/datagen/providers/AntimatterBlockTagProvider.java @@ -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);