Added c:is_obsidian Tag (paulevsGitch/BetterNether#550)
This commit is contained in:
parent
41610f249a
commit
77250a6688
3 changed files with 68 additions and 64 deletions
|
@ -22,4 +22,5 @@ public class CommonBlockTags {
|
|||
public static final TagKey<Block> WORKBENCHES = TagAPI.makeCommonBlockTag("workbench");
|
||||
|
||||
public static final TagKey<Block> MINABLE_WITH_HAMMER = TagAPI.makeCommonBlockTag("mineable/hammer");
|
||||
public static final TagKey<Block> IS_OBSIDIAN = TagAPI.makeCommonBlockTag("is_obsidian");
|
||||
}
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
package ru.bclib.api.tag;
|
||||
|
||||
import net.minecraft.world.level.block.Block;
|
||||
|
||||
import ru.bclib.api.tag.TagAPI.TagLocation;
|
||||
|
||||
public class NamedBlockTags {
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
package ru.bclib.api.tag;
|
||||
|
||||
import net.minecraft.world.level.block.Block;
|
||||
|
||||
import ru.bclib.api.tag.TagAPI.TagLocation;
|
||||
|
||||
public class NamedCommonBlockTags {
|
||||
|
@ -21,4 +22,5 @@ public class NamedCommonBlockTags {
|
|||
public static final TagLocation<Block> WOODEN_CHEST = new TagLocation<>("c", "wooden_chests");
|
||||
public static final TagLocation<Block> WORKBENCHES = new TagLocation<>("c", "workbench");
|
||||
public static final TagLocation<Block> DRAGON_IMMUNE = new TagLocation<>("c", "dragon_immune");
|
||||
public static final TagLocation<Block> IS_OBSIDIAN = new TagLocation<>("c", "is_obsidian");
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue