Skip to content

Commit

Permalink
fix: Some tag inconsistencies
Browse files Browse the repository at this point in the history
Closes: GH-846
  • Loading branch information
Rover656 committed Oct 12, 2024
1 parent 960a6f9 commit 61535c3
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"#c:storage_blocks/conductive_alloy",
"#c:storage_blocks/copper_alloy",
"#c:storage_blocks/dark_steel",
"#c:storage_blocks/energetic_alloy",
"#c:storage_blocks/end_steel",
"#c:storage_blocks/energetic_alloy",
"#c:storage_blocks/pulsating_alloy",
"#c:storage_blocks/redstone_alloy",
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"values": [
"enderio:end_steel_block"
]
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"values": [
"enderio:energetic_alloy_block",
"enderio:end_steel_block"
"enderio:energetic_alloy_block"
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ public static class Items {
private static void init() {}

// TODO: use these for slot filtering again.
public static final TagKey<Item> ENTITY_STORAGE = commonTag("enderio/entity_storage");
public static final TagKey<Item> GRINDING_BALLS = commonTag("enderio/grinding_balls");
public static final TagKey<Item> ENTITY_STORAGE = tag("entity_storage");
public static final TagKey<Item> GRINDING_BALLS = tag("grinding_balls");

public static final TagKey<Item> WRENCH = commonTag("tools/wrench");
public static final TagKey<Item> GLIDER = tag("tools/glider");
Expand Down Expand Up @@ -108,7 +108,7 @@ private static void init() {}
public static final TagKey<Item> BLOCKS_CONDUCTIVE_ALLOY = commonTag("storage_blocks/conductive_alloy");
public static final TagKey<Item> BLOCKS_COPPER_ALLOY = commonTag("storage_blocks/copper_alloy");
public static final TagKey<Item> BLOCKS_DARK_STEEL = commonTag("storage_blocks/dark_steel");
public static final TagKey<Item> BLOCKS_END_STEEL = commonTag("storage_blocks/energetic_alloy");
public static final TagKey<Item> BLOCKS_END_STEEL = commonTag("storage_blocks/end_steel");
public static final TagKey<Item> BLOCKS_ENERGETIC_ALLOY = commonTag("storage_blocks/energetic_alloy");
public static final TagKey<Item> BLOCKS_PULSATING_ALLOY = commonTag("storage_blocks/pulsating_alloy");
public static final TagKey<Item> BLOCKS_REDSTONE_ALLOY = commonTag("storage_blocks/redstone_alloy");
Expand Down

0 comments on commit 61535c3

Please sign in to comment.