Skip to content

Commit

Permalink
no never
Browse files Browse the repository at this point in the history
  • Loading branch information
unix-supremacist committed Dec 8, 2023
1 parent 062a081 commit 60ef215
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/main/java/io/github/unix_supremacist/data/BlockTag.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@

public class BlockTag extends FabricTagProvider.BlockTagProvider {
public static HashSet<ArrayList<Block>> exchanges = new HashSet<>();
public static TagKey<Block> terratag = TagKey.create(BuiltInRegistries.BLOCK.key(), new ResourceLocation(Alchemist.MODID, "terra"));
public static TagKey<Block> woodtag = TagKey.create(BuiltInRegistries.BLOCK.key(), new ResourceLocation(Alchemist.MODID, "wood"));
public static TagKey<Block> netherwoodtag = TagKey.create(BuiltInRegistries.BLOCK.key(), new ResourceLocation(Alchemist.MODID, "netherwood"));
public static TagKey<Block> leavetag = TagKey.create(BuiltInRegistries.BLOCK.key(), new ResourceLocation(Alchemist.MODID, "leave"));
public static TagKey<Block> stonetag = TagKey.create(BuiltInRegistries.BLOCK.key(), new ResourceLocation(Alchemist.MODID, "stone"));
public static TagKey<Block> obsidiantag = TagKey.create(BuiltInRegistries.BLOCK.key(), new ResourceLocation(Alchemist.MODID, "obsidian"));
public static TagKey<Block> stonebrickstag = TagKey.create(BuiltInRegistries.BLOCK.key(), new ResourceLocation(Alchemist.MODID, "stonebricks"));
public static TagKey<Block> terratag = AlabliRegistry.createBlockTag("terra");
public static TagKey<Block> woodtag = AlabliRegistry.createBlockTag("wood");
public static TagKey<Block> netherwoodtag = AlabliRegistry.createBlockTag("netherwood");
public static TagKey<Block> leavetag = AlabliRegistry.createBlockTag("leave");
public static TagKey<Block> stonetag = AlabliRegistry.createBlockTag("stone");
public static TagKey<Block> obsidiantag = AlabliRegistry.createBlockTag("obsidian");
public static TagKey<Block> stonebrickstag = AlabliRegistry.createBlockTag("stonebricks");

public BlockTag(FabricDataOutput output, CompletableFuture<HolderLookup.Provider> completableFuture) {
super(output, completableFuture);
Expand Down

0 comments on commit 60ef215

Please sign in to comment.