Skip to content

Commit

Permalink
Fix #4181 and #4182
Browse files Browse the repository at this point in the history
  • Loading branch information
Prospector committed Nov 1, 2024
1 parent 7feeb73 commit 6f8cf66
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -513,6 +513,7 @@ private void generateLogTags() {
.add(Blocks.STRIPPED_JUNGLE_LOG)
.add(Blocks.STRIPPED_MANGROVE_LOG)
.add(Blocks.STRIPPED_OAK_LOG)
.add(Blocks.STRIPPED_PALE_OAK_LOG)
.add(Blocks.STRIPPED_SPRUCE_LOG);

getOrCreateTagBuilder(ConventionalBlockTags.STRIPPED_WOODS)
Expand All @@ -523,6 +524,7 @@ private void generateLogTags() {
.add(Blocks.STRIPPED_JUNGLE_WOOD)
.add(Blocks.STRIPPED_MANGROVE_WOOD)
.add(Blocks.STRIPPED_OAK_WOOD)
.add(Blocks.STRIPPED_PALE_OAK_WOOD)
.add(Blocks.STRIPPED_SPRUCE_WOOD);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -471,10 +471,6 @@ private void generateOreAndRelatedTags() {
.addOptionalTag(ConventionalItemTags.COPPER_RAW_MATERIALS)
.addOptionalTag(ConventionalItemTags.GOLD_RAW_MATERIALS)
.addOptionalTag(ConventionalItemTags.IRON_RAW_MATERIALS);
getOrCreateTagBuilder(ConventionalItemTags.RAW_MATERIALS)
.addOptionalTag(ConventionalItemTags.COPPER_RAW_MATERIALS)
.addOptionalTag(ConventionalItemTags.IRON_RAW_MATERIALS)
.addOptionalTag(ConventionalItemTags.GOLD_RAW_MATERIALS);

getOrCreateTagBuilder(ConventionalItemTags.RAW_BLOCKS)
.addOptionalTag(ConventionalItemTags.COPPER_RAW_BLOCKS)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
"minecraft:stripped_jungle_log",
"minecraft:stripped_mangrove_log",
"minecraft:stripped_oak_log",
"minecraft:stripped_pale_oak_log",
"minecraft:stripped_spruce_log"
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"minecraft:stripped_jungle_wood",
"minecraft:stripped_mangrove_wood",
"minecraft:stripped_oak_wood",
"minecraft:stripped_pale_oak_wood",
"minecraft:stripped_spruce_wood"
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,6 @@
{
"id": "#c:raw_materials/iron",
"required": false
},
{
"id": "#c:raw_materials/copper",
"required": false
},
{
"id": "#c:raw_materials/iron",
"required": false
},
{
"id": "#c:raw_materials/gold",
"required": false
}
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
"minecraft:stripped_jungle_log",
"minecraft:stripped_mangrove_log",
"minecraft:stripped_oak_log",
"minecraft:stripped_pale_oak_log",
"minecraft:stripped_spruce_log"
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"minecraft:stripped_jungle_wood",
"minecraft:stripped_mangrove_wood",
"minecraft:stripped_oak_wood",
"minecraft:stripped_pale_oak_wood",
"minecraft:stripped_spruce_wood"
]
}

0 comments on commit 6f8cf66

Please sign in to comment.