Added c:is_obsidian
Tag for ObsidianBreaker (paulevsGitch/BetterNether#550)
This commit is contained in:
parent
47b537f65d
commit
d533f93113
2 changed files with 2 additions and 3 deletions
|
@ -24,4 +24,6 @@ public class CommonBlockTags {
|
|||
public static final TagKey<Block> DRAGON_IMMUNE = TagAPI.makeCommonBlockTag("dragon_immune");
|
||||
|
||||
public static final TagKey<Block> MINABLE_WITH_HAMMER = TagAPI.makeCommonBlockTag("mineable/hammer");
|
||||
|
||||
public static final TagKey<Block> IS_OBSIDIAN = TagAPI.makeCommonBlockTag("is_obsidian");
|
||||
}
|
||||
|
|
|
@ -148,7 +148,6 @@ public class TagAPI {
|
|||
* @param biome The {@link Biome} to add tag.
|
||||
*/
|
||||
@SafeVarargs
|
||||
@Deprecated(forRemoval = true)
|
||||
public static void addBiomeTags(Biome biome, TagKey<Biome>... tagIDs) {
|
||||
BIOMES.add(biome, tagIDs);
|
||||
}
|
||||
|
@ -171,7 +170,6 @@ public class TagAPI {
|
|||
* @param block The {@link Block} to add tag.
|
||||
*/
|
||||
@SafeVarargs
|
||||
@Deprecated(forRemoval = true)
|
||||
public static void addBlockTags(Block block, TagKey<Block>... tagIDs) {
|
||||
BLOCKS.add(block, tagIDs);
|
||||
}
|
||||
|
@ -193,7 +191,6 @@ public class TagAPI {
|
|||
* @param tagIDs array of {@link TagKey<Item>} tag IDs.
|
||||
* @param item The {@link Item} to add tag.
|
||||
*/
|
||||
@Deprecated(forRemoval = true)
|
||||
@SafeVarargs
|
||||
public static void addItemTags(ItemLike item, TagKey<Item>... tagIDs) {
|
||||
ITEMS.add(item.asItem(), tagIDs);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue