[Feature] Add Tag to Fisherman Workstation POI (quiqueck/BetterNether#39)

This commit is contained in:
Frank 2022-07-21 12:12:50 +02:00
parent 5ac1eed54e
commit 1628ac9a86
2 changed files with 20 additions and 0 deletions

View file

@ -0,0 +1,12 @@
package org.betterx.worlds.together.tag.v3;
import net.minecraft.tags.TagKey;
import net.minecraft.world.level.block.Block;
public class CommonPoiTags {
public static final TagKey<Block> FISHERMAN_WORKSTATION = TagManager.BLOCKS.makeCommonTag("workstation/fisherman");
static {
TagManager.BLOCKS.addOtherTags(FISHERMAN_WORKSTATION, CommonBlockTags.BARREL, CommonBlockTags.WOODEN_BARREL);
}
}