Skip to content

Commit

Permalink
fix build and address nether brick fence lang
Browse files Browse the repository at this point in the history
  • Loading branch information
TelepathicGrunt committed Dec 15, 2024
1 parent 1bc3f63 commit 31cae73
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/generated/resources/assets/c/lang/en_us.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"tag.block.c.fence_gates": "Fence Gates",
"tag.block.c.fence_gates.wooden": "Wooden Fence Gates",
"tag.block.c.fences": "Fences",
"tag.block.c.fences.nether_brick": "Fences Nether Brick",
"tag.block.c.fences.nether_brick": "Nether Brick Fences",
"tag.block.c.fences.wooden": "Wooden Fences",
"tag.block.c.glass_blocks": "Glass Blocks",
"tag.block.c.glass_blocks.cheap": "Silica Glass Blocks",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -199,8 +199,8 @@ public void addTags(HolderLookup.Provider lookupProvider) {
copy(Tags.Blocks.ORES_IN_GROUND_STONE, Tags.Items.ORES_IN_GROUND_STONE);
copy(Tags.Blocks.PLAYER_WORKSTATIONS_CRAFTING_TABLES, Tags.Items.PLAYER_WORKSTATIONS_CRAFTING_TABLES);
copy(Tags.Blocks.PLAYER_WORKSTATIONS_FURNACES, Tags.Items.PLAYER_WORKSTATIONS_FURNACES);
tag(Tags.Items.POTION_BOTTLE).add(Items.POTION, Items.SPLASH_POTION, Items.LINGERING_POTION);
tag(Tags.Items.POTIONS).addTags(Tags.Items.POTION_BOTTLE);
tag(Tags.Items.POTIONS_BOTTLE).add(Items.POTION, Items.SPLASH_POTION, Items.LINGERING_POTION);
tag(Tags.Items.POTIONS).addTags(Tags.Items.POTIONS_BOTTLE);
tag(Tags.Items.RAW_MATERIALS).addTags(Tags.Items.RAW_MATERIALS_COPPER, Tags.Items.RAW_MATERIALS_GOLD, Tags.Items.RAW_MATERIALS_IRON);
tag(Tags.Items.RAW_MATERIALS_COPPER).add(Items.RAW_COPPER);
tag(Tags.Items.RAW_MATERIALS_GOLD).add(Items.RAW_GOLD);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ protected void addTranslations() {
add(Tags.Blocks.FENCE_GATES, "Fence Gates");
add(Tags.Blocks.FENCE_GATES_WOODEN, "Wooden Fence Gates");
add(Tags.Blocks.FENCES, "Fences");
add(Tags.Blocks.FENCES_NETHER_BRICK, "Fences Nether Brick");
add(Tags.Blocks.FENCES_NETHER_BRICK, "Nether Brick Fences");
add(Tags.Blocks.FENCES_WOODEN, "Wooden Fences");
add(Tags.Blocks.GLASS_BLOCKS, "Glass Blocks");
add(Tags.Blocks.GLASS_BLOCKS_COLORLESS, "Colorless Glass Blocks");
Expand Down Expand Up @@ -281,7 +281,7 @@ protected void addTranslations() {
add(Tags.Items.PLAYER_WORKSTATIONS_CRAFTING_TABLES, "Crafting Tables");
add(Tags.Items.PLAYER_WORKSTATIONS_FURNACES, "Furnaces");
add(Tags.Items.POTIONS, "Potions");
add(Tags.Items.POTION_BOTTLE, "Bottled Potions");
add(Tags.Items.POTIONS_BOTTLE, "Bottled Potions");
add(Tags.Items.RAW_MATERIALS, "Raw Materials");
add(Tags.Items.RAW_MATERIALS_COPPER, "Copper Raw Materials");
add(Tags.Items.RAW_MATERIALS_GOLD, "Gold Raw Materials");
Expand Down

0 comments on commit 31cae73

Please sign in to comment.