Removed custom End/Nether Tags
This commit is contained in:
parent
857807aca1
commit
2fa5c9510a
2 changed files with 3 additions and 5 deletions
|
@ -1,11 +1,12 @@
|
|||
package org.betterx.worlds.together.tag.v3;
|
||||
|
||||
import net.minecraft.tags.BiomeTags;
|
||||
import net.minecraft.tags.TagKey;
|
||||
import net.minecraft.world.level.biome.Biome;
|
||||
|
||||
public class CommonBiomeTags {
|
||||
public static final TagKey<Biome> IN_NETHER = TagManager.BIOMES.makeCommonTag("in_nether");
|
||||
public static final TagKey<Biome> IN_END = TagManager.BIOMES.makeCommonTag("in_end");
|
||||
public static final TagKey<Biome> IN_NETHER = BiomeTags.IS_NETHER;//TagManager.BIOMES.makeCommonTag("in_nether");
|
||||
public static final TagKey<Biome> IN_END = BiomeTags.IS_END; //TagManager.BIOMES.makeCommonTag("in_end");
|
||||
|
||||
static void prepareTags() {
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue