Skip to content

Commit 2530e4a

Browse files
committed
fix: missing ores_in_ground subtags for items
1 parent 4a50a12 commit 2530e4a

File tree

4 files changed

+19
-0
lines changed

4 files changed

+19
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"values": [
3+
"occultism:silver_ore_deepslate"
4+
]
5+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"values": [
3+
"occultism:iesnium_ore"
4+
]
5+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"values": [
3+
"occultism:silver_ore"
4+
]
5+
}

src/main/java/com/klikli_dev/occultism/datagen/tags/OccultismItemTagProvider.java

+4
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,10 @@ private void addCommonTags(HolderLookup.Provider provider) {
160160
this.copy(OccultismTags.Blocks.SILVER_ORE, OccultismTags.Items.SILVER_ORE);
161161
this.tag(Tags.Items.ORES).addTags(OccultismTags.Items.IESNIUM_ORE, OccultismTags.Items.SILVER_ORE).replace(false);
162162

163+
this.copy(Tags.Blocks.ORES_IN_GROUND_STONE, Tags.Items.ORES_IN_GROUND_STONE);
164+
this.copy(Tags.Blocks.ORES_IN_GROUND_DEEPSLATE, Tags.Items.ORES_IN_GROUND_DEEPSLATE);
165+
this.copy(Tags.Blocks.ORES_IN_GROUND_NETHERRACK, Tags.Items.ORES_IN_GROUND_NETHERRACK);
166+
163167
// Raw Materials
164168
this.tag(OccultismTags.Items.RAW_SILVER).add(OccultismItems.RAW_SILVER.get()).replace(false);
165169
this.tag(OccultismTags.Items.RAW_IESNIUM).add(OccultismItems.RAW_IESNIUM.get()).replace(false);

0 commit comments

Comments
 (0)