Skip to content

Commit

Permalink
Fix tag-related issues
Browse files Browse the repository at this point in the history
- Fixes mining levels breaking
- Fixes an error related to the `incorrect_For_unobtainium_alloy_tools` tag
  • Loading branch information
Noaaan committed Aug 24, 2024
1 parent edfb1ff commit 5673317
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/main/java/nourl/mythicmetals/blocks/MythicBlocks.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public class MythicBlocks {
private static final Identifier STONE_MINING_LEVEL = BlockTags.NEEDS_STONE_TOOL.id();
private static final Identifier IRON_MINING_LEVEL = BlockTags.NEEDS_IRON_TOOL.id();
private static final Identifier DIAMOND_MINING_LEVEL = BlockTags.NEEDS_DIAMOND_TOOL.id();
private static final Identifier NETHERITE_MINING_LEVEL = RegistryHelper.id("needs_netherite_tool");
private static final Identifier NETHERITE_MINING_LEVEL = Identifier.of("needs_netherite_tool");
private static final Identifier MYTHIC_MINING_LEVEL = RegistryHelper.id("needs_unobtainable_tool");

public static final BlockSet ADAMANTITE = BlockSet.Builder.begin("adamantite", false)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"_comment": "metallurgium and celestium will not be able to mine blocks in this tag",
"replace": false
"replace": false,
"values": []
}

0 comments on commit 5673317

Please sign in to comment.