Moved Tag API to version directory
This commit is contained in:
parent
ecb0f6fb99
commit
c2e5096056
48 changed files with 155 additions and 153 deletions
|
@ -18,7 +18,7 @@ import org.betterx.bclib.registry.BaseBlockEntities;
|
|||
import org.betterx.bclib.registry.BaseRegistry;
|
||||
import org.betterx.bclib.util.Logger;
|
||||
import org.betterx.worlds.together.WorldsTogether;
|
||||
import org.betterx.worlds.together.tag.TagManager;
|
||||
import org.betterx.worlds.together.tag.v3.TagManager;
|
||||
import org.betterx.worlds.together.world.WorldConfig;
|
||||
|
||||
import net.minecraft.resources.ResourceLocation;
|
||||
|
|
|
@ -15,8 +15,8 @@ import org.betterx.bclib.interfaces.RenderLayerProvider;
|
|||
import org.betterx.bclib.interfaces.TagProvider;
|
||||
import org.betterx.bclib.interfaces.tools.*;
|
||||
import org.betterx.bclib.registry.BaseBlockEntities;
|
||||
import org.betterx.worlds.together.tag.MineableTags;
|
||||
import org.betterx.worlds.together.tag.TagManager;
|
||||
import org.betterx.worlds.together.tag.v3.MineableTags;
|
||||
import org.betterx.worlds.together.tag.v3.TagManager;
|
||||
|
||||
import net.minecraft.client.renderer.RenderType;
|
||||
import net.minecraft.core.Registry;
|
||||
|
|
|
@ -3,7 +3,7 @@ package org.betterx.bclib.api.v2.levelgen.biomes;
|
|||
import org.betterx.bclib.BCLib;
|
||||
import org.betterx.bclib.api.v2.levelgen.surface.SurfaceRuleUtil;
|
||||
import org.betterx.bclib.util.WeightedList;
|
||||
import org.betterx.worlds.together.tag.TagManager;
|
||||
import org.betterx.worlds.together.tag.v3.TagManager;
|
||||
|
||||
import net.minecraft.data.BuiltinRegistries;
|
||||
import net.minecraft.resources.ResourceKey;
|
||||
|
|
|
@ -6,8 +6,8 @@ import org.betterx.bclib.interfaces.SurfaceMaterialProvider;
|
|||
import org.betterx.bclib.mixin.common.BiomeGenerationSettingsAccessor;
|
||||
import org.betterx.bclib.mixin.common.MobSpawnSettingsAccessor;
|
||||
import org.betterx.bclib.util.CollectionsUtil;
|
||||
import org.betterx.worlds.together.tag.CommonBiomeTags;
|
||||
import org.betterx.worlds.together.tag.TagManager;
|
||||
import org.betterx.worlds.together.tag.v3.CommonBiomeTags;
|
||||
import org.betterx.worlds.together.tag.v3.TagManager;
|
||||
|
||||
import net.minecraft.client.Minecraft;
|
||||
import net.minecraft.core.BlockPos;
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
package org.betterx.bclib.api.v2.levelgen.features;
|
||||
|
||||
import org.betterx.bclib.api.v2.levelgen.features.placement.*;
|
||||
import org.betterx.worlds.together.tag.CommonBlockTags;
|
||||
import org.betterx.worlds.together.tag.v3.CommonBlockTags;
|
||||
|
||||
import net.minecraft.core.Direction;
|
||||
import net.minecraft.core.Vec3i;
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
package org.betterx.bclib.api.v2.levelgen.structures;
|
||||
|
||||
import org.betterx.worlds.together.tag.TagManager;
|
||||
import org.betterx.worlds.together.tag.v3.TagManager;
|
||||
|
||||
import com.mojang.serialization.Codec;
|
||||
import net.minecraft.resources.ResourceLocation;
|
||||
|
|
|
@ -4,13 +4,13 @@ import net.minecraft.tags.TagKey;
|
|||
import net.minecraft.world.level.biome.Biome;
|
||||
|
||||
/**
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.CommonBiomeTags}
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.v3.CommonBiomeTags}
|
||||
*/
|
||||
@Deprecated(forRemoval = true)
|
||||
public class CommonBiomeTags {
|
||||
/**
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.CommonBiomeTags#IN_NETHER}
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.v3.CommonBiomeTags#IN_NETHER}
|
||||
**/
|
||||
@Deprecated(forRemoval = true)
|
||||
public static final TagKey<Biome> IN_NETHER = org.betterx.worlds.together.tag.CommonBiomeTags.IN_NETHER;
|
||||
public static final TagKey<Biome> IN_NETHER = org.betterx.worlds.together.tag.v3.CommonBiomeTags.IN_NETHER;
|
||||
}
|
||||
|
|
|
@ -4,128 +4,128 @@ import net.minecraft.tags.TagKey;
|
|||
import net.minecraft.world.level.block.Block;
|
||||
|
||||
/**
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.CommonBlockTags}
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.v3.CommonBlockTags}
|
||||
*/
|
||||
@Deprecated(forRemoval = true)
|
||||
public class CommonBlockTags {
|
||||
/**
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.CommonBlockTags#BARREL}
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.v3.CommonBlockTags#BARREL}
|
||||
**/
|
||||
@Deprecated(forRemoval = true)
|
||||
public static final TagKey<Block> BARREL = org.betterx.worlds.together.tag.CommonBlockTags.BARREL;
|
||||
public static final TagKey<Block> BARREL = org.betterx.worlds.together.tag.v3.CommonBlockTags.BARREL;
|
||||
/**
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.CommonBlockTags#BOOKSHELVES}
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.v3.CommonBlockTags#BOOKSHELVES}
|
||||
**/
|
||||
@Deprecated(forRemoval = true)
|
||||
public static final TagKey<Block> BOOKSHELVES = org.betterx.worlds.together.tag.CommonBlockTags.BOOKSHELVES;
|
||||
public static final TagKey<Block> BOOKSHELVES = org.betterx.worlds.together.tag.v3.CommonBlockTags.BOOKSHELVES;
|
||||
/**
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.CommonBlockTags#CHEST}
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.v3.CommonBlockTags#CHEST}
|
||||
**/
|
||||
@Deprecated(forRemoval = true)
|
||||
public static final TagKey<Block> CHEST = org.betterx.worlds.together.tag.CommonBlockTags.CHEST;
|
||||
public static final TagKey<Block> CHEST = org.betterx.worlds.together.tag.v3.CommonBlockTags.CHEST;
|
||||
/**
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.CommonBlockTags#END_STONES}
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.v3.CommonBlockTags#END_STONES}
|
||||
**/
|
||||
@Deprecated(forRemoval = true)
|
||||
public static final TagKey<Block> END_STONES = org.betterx.worlds.together.tag.CommonBlockTags.END_STONES;
|
||||
public static final TagKey<Block> END_STONES = org.betterx.worlds.together.tag.v3.CommonBlockTags.END_STONES;
|
||||
/**
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.CommonBlockTags#GEN_END_STONES}
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.v3.CommonBlockTags#GEN_END_STONES}
|
||||
**/
|
||||
@Deprecated(forRemoval = true)
|
||||
public static final TagKey<Block> GEN_END_STONES = org.betterx.worlds.together.tag.CommonBlockTags.GEN_END_STONES;
|
||||
public static final TagKey<Block> GEN_END_STONES = org.betterx.worlds.together.tag.v3.CommonBlockTags.GEN_END_STONES;
|
||||
/**
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.CommonBlockTags#IMMOBILE}
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.v3.CommonBlockTags#IMMOBILE}
|
||||
**/
|
||||
@Deprecated(forRemoval = true)
|
||||
public static final TagKey<Block> IMMOBILE = org.betterx.worlds.together.tag.CommonBlockTags.IMMOBILE;
|
||||
public static final TagKey<Block> IMMOBILE = org.betterx.worlds.together.tag.v3.CommonBlockTags.IMMOBILE;
|
||||
/**
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.CommonBlockTags#LEAVES}
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.v3.CommonBlockTags#LEAVES}
|
||||
**/
|
||||
@Deprecated(forRemoval = true)
|
||||
public static final TagKey<Block> LEAVES = org.betterx.worlds.together.tag.CommonBlockTags.LEAVES;
|
||||
public static final TagKey<Block> LEAVES = org.betterx.worlds.together.tag.v3.CommonBlockTags.LEAVES;
|
||||
/**
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.CommonBlockTags#NETHERRACK}
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.v3.CommonBlockTags#NETHERRACK}
|
||||
**/
|
||||
@Deprecated(forRemoval = true)
|
||||
public static final TagKey<Block> NETHERRACK = org.betterx.worlds.together.tag.CommonBlockTags.NETHERRACK;
|
||||
public static final TagKey<Block> NETHERRACK = org.betterx.worlds.together.tag.v3.CommonBlockTags.NETHERRACK;
|
||||
/**
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.CommonBlockTags#MYCELIUM}
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.v3.CommonBlockTags#MYCELIUM}
|
||||
**/
|
||||
@Deprecated(forRemoval = true)
|
||||
public static final TagKey<Block> MYCELIUM = org.betterx.worlds.together.tag.CommonBlockTags.MYCELIUM;
|
||||
public static final TagKey<Block> MYCELIUM = org.betterx.worlds.together.tag.v3.CommonBlockTags.MYCELIUM;
|
||||
/**
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.CommonBlockTags#NETHER_MYCELIUM}
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.v3.CommonBlockTags#NETHER_MYCELIUM}
|
||||
**/
|
||||
@Deprecated(forRemoval = true)
|
||||
public static final TagKey<Block> NETHER_MYCELIUM = org.betterx.worlds.together.tag.CommonBlockTags.NETHER_MYCELIUM;
|
||||
public static final TagKey<Block> NETHER_MYCELIUM = org.betterx.worlds.together.tag.v3.CommonBlockTags.NETHER_MYCELIUM;
|
||||
/**
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.CommonBlockTags#NETHER_PORTAL_FRAME}
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.v3.CommonBlockTags#NETHER_PORTAL_FRAME}
|
||||
**/
|
||||
@Deprecated(forRemoval = true)
|
||||
public static final TagKey<Block> NETHER_PORTAL_FRAME = org.betterx.worlds.together.tag.CommonBlockTags.NETHER_PORTAL_FRAME;
|
||||
public static final TagKey<Block> NETHER_PORTAL_FRAME = org.betterx.worlds.together.tag.v3.CommonBlockTags.NETHER_PORTAL_FRAME;
|
||||
/**
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.CommonBlockTags#NETHER_STONES}
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.v3.CommonBlockTags#NETHER_STONES}
|
||||
**/
|
||||
@Deprecated(forRemoval = true)
|
||||
public static final TagKey<Block> NETHER_STONES = org.betterx.worlds.together.tag.CommonBlockTags.NETHER_STONES;
|
||||
public static final TagKey<Block> NETHER_STONES = org.betterx.worlds.together.tag.v3.CommonBlockTags.NETHER_STONES;
|
||||
/**
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.CommonBlockTags#NETHER_ORES}
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.v3.CommonBlockTags#NETHER_ORES}
|
||||
**/
|
||||
@Deprecated(forRemoval = true)
|
||||
public static final TagKey<Block> NETHER_ORES = org.betterx.worlds.together.tag.CommonBlockTags.NETHER_ORES;
|
||||
public static final TagKey<Block> NETHER_ORES = org.betterx.worlds.together.tag.v3.CommonBlockTags.NETHER_ORES;
|
||||
/**
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.CommonBlockTags#END_ORES}
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.v3.CommonBlockTags#END_ORES}
|
||||
**/
|
||||
@Deprecated(forRemoval = true)
|
||||
public static final TagKey<Block> END_ORES = org.betterx.worlds.together.tag.CommonBlockTags.END_ORES;
|
||||
public static final TagKey<Block> END_ORES = org.betterx.worlds.together.tag.v3.CommonBlockTags.END_ORES;
|
||||
/**
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.CommonBlockTags#SAPLINGS}
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.v3.CommonBlockTags#SAPLINGS}
|
||||
**/
|
||||
@Deprecated(forRemoval = true)
|
||||
public static final TagKey<Block> SAPLINGS = org.betterx.worlds.together.tag.CommonBlockTags.SAPLINGS;
|
||||
public static final TagKey<Block> SAPLINGS = org.betterx.worlds.together.tag.v3.CommonBlockTags.SAPLINGS;
|
||||
/**
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.CommonBlockTags#SOUL_GROUND}
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.v3.CommonBlockTags#SOUL_GROUND}
|
||||
**/
|
||||
@Deprecated(forRemoval = true)
|
||||
public static final TagKey<Block> SOUL_GROUND = org.betterx.worlds.together.tag.CommonBlockTags.SOUL_GROUND;
|
||||
public static final TagKey<Block> SOUL_GROUND = org.betterx.worlds.together.tag.v3.CommonBlockTags.SOUL_GROUND;
|
||||
/**
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.CommonBlockTags#WOODEN_BARREL}
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.v3.CommonBlockTags#WOODEN_BARREL}
|
||||
**/
|
||||
@Deprecated(forRemoval = true)
|
||||
public static final TagKey<Block> WOODEN_BARREL = org.betterx.worlds.together.tag.CommonBlockTags.WOODEN_BARREL;
|
||||
public static final TagKey<Block> WOODEN_BARREL = org.betterx.worlds.together.tag.v3.CommonBlockTags.WOODEN_BARREL;
|
||||
/**
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.CommonBlockTags#WOODEN_CHEST}
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.v3.CommonBlockTags#WOODEN_CHEST}
|
||||
**/
|
||||
@Deprecated(forRemoval = true)
|
||||
public static final TagKey<Block> WOODEN_CHEST = org.betterx.worlds.together.tag.CommonBlockTags.WOODEN_CHEST;
|
||||
public static final TagKey<Block> WOODEN_CHEST = org.betterx.worlds.together.tag.v3.CommonBlockTags.WOODEN_CHEST;
|
||||
/**
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.CommonBlockTags#WORKBENCHES}
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.v3.CommonBlockTags#WORKBENCHES}
|
||||
**/
|
||||
@Deprecated(forRemoval = true)
|
||||
public static final TagKey<Block> WORKBENCHES = org.betterx.worlds.together.tag.CommonBlockTags.WORKBENCHES;
|
||||
public static final TagKey<Block> WORKBENCHES = org.betterx.worlds.together.tag.v3.CommonBlockTags.WORKBENCHES;
|
||||
/**
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.CommonBlockTags#DRAGON_IMMUNE}
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.v3.CommonBlockTags#DRAGON_IMMUNE}
|
||||
**/
|
||||
@Deprecated(forRemoval = true)
|
||||
public static final TagKey<Block> DRAGON_IMMUNE = org.betterx.worlds.together.tag.CommonBlockTags.DRAGON_IMMUNE;
|
||||
public static final TagKey<Block> DRAGON_IMMUNE = org.betterx.worlds.together.tag.v3.CommonBlockTags.DRAGON_IMMUNE;
|
||||
/**
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.CommonBlockTags#MINABLE_WITH_HAMMER}
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.v3.CommonBlockTags#MINABLE_WITH_HAMMER}
|
||||
**/
|
||||
@Deprecated(forRemoval = true)
|
||||
public static final TagKey<Block> MINABLE_WITH_HAMMER = org.betterx.worlds.together.tag.CommonBlockTags.MINABLE_WITH_HAMMER;
|
||||
public static final TagKey<Block> MINABLE_WITH_HAMMER = org.betterx.worlds.together.tag.v3.CommonBlockTags.MINABLE_WITH_HAMMER;
|
||||
/**
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.CommonBlockTags#IS_OBSIDIAN}
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.v3.CommonBlockTags#IS_OBSIDIAN}
|
||||
**/
|
||||
@Deprecated(forRemoval = true)
|
||||
public static final TagKey<Block> IS_OBSIDIAN = org.betterx.worlds.together.tag.CommonBlockTags.IS_OBSIDIAN;
|
||||
public static final TagKey<Block> IS_OBSIDIAN = org.betterx.worlds.together.tag.v3.CommonBlockTags.IS_OBSIDIAN;
|
||||
/**
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.CommonBlockTags#TERRAIN}
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.v3.CommonBlockTags#TERRAIN}
|
||||
**/
|
||||
@Deprecated(forRemoval = true)
|
||||
public static final TagKey<Block> TERRAIN = org.betterx.worlds.together.tag.CommonBlockTags.TERRAIN;
|
||||
public static final TagKey<Block> TERRAIN = org.betterx.worlds.together.tag.v3.CommonBlockTags.TERRAIN;
|
||||
/**
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.CommonBlockTags#NETHER_TERRAIN}
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.v3.CommonBlockTags#NETHER_TERRAIN}
|
||||
**/
|
||||
@Deprecated(forRemoval = true)
|
||||
public static final TagKey<Block> NETHER_TERRAIN = org.betterx.worlds.together.tag.CommonBlockTags.NETHER_TERRAIN;
|
||||
public static final TagKey<Block> NETHER_TERRAIN = org.betterx.worlds.together.tag.v3.CommonBlockTags.NETHER_TERRAIN;
|
||||
}
|
||||
|
|
|
@ -4,70 +4,70 @@ import net.minecraft.tags.TagKey;
|
|||
import net.minecraft.world.item.Item;
|
||||
|
||||
/**
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.CommonItemTags}
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.v3.CommonItemTags}
|
||||
*/
|
||||
@Deprecated(forRemoval = true)
|
||||
public class CommonItemTags {
|
||||
|
||||
/**
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.CommonItemTags#HAMMERS}
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.v3.CommonItemTags#HAMMERS}
|
||||
**/
|
||||
@Deprecated(forRemoval = true)
|
||||
public final static TagKey<Item> HAMMERS = org.betterx.worlds.together.tag.CommonItemTags.HAMMERS;
|
||||
public final static TagKey<Item> HAMMERS = org.betterx.worlds.together.tag.v3.CommonItemTags.HAMMERS;
|
||||
/**
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.CommonItemTags#BARREL}
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.v3.CommonItemTags#BARREL}
|
||||
**/
|
||||
@Deprecated(forRemoval = true)
|
||||
public static final TagKey<Item> BARREL = org.betterx.worlds.together.tag.CommonItemTags.BARREL;
|
||||
public static final TagKey<Item> BARREL = org.betterx.worlds.together.tag.v3.CommonItemTags.BARREL;
|
||||
/**
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.CommonItemTags#CHEST}
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.v3.CommonItemTags#CHEST}
|
||||
**/
|
||||
@Deprecated(forRemoval = true)
|
||||
public static final TagKey<Item> CHEST = org.betterx.worlds.together.tag.CommonItemTags.CHEST;
|
||||
public static final TagKey<Item> CHEST = org.betterx.worlds.together.tag.v3.CommonItemTags.CHEST;
|
||||
/**
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.CommonItemTags#SHEARS}
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.v3.CommonItemTags#SHEARS}
|
||||
**/
|
||||
@Deprecated(forRemoval = true)
|
||||
public static final TagKey<Item> SHEARS = org.betterx.worlds.together.tag.CommonItemTags.SHEARS;
|
||||
public static final TagKey<Item> SHEARS = org.betterx.worlds.together.tag.v3.CommonItemTags.SHEARS;
|
||||
/**
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.CommonItemTags#FURNACES}
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.v3.CommonItemTags#FURNACES}
|
||||
**/
|
||||
@Deprecated(forRemoval = true)
|
||||
public static final TagKey<Item> FURNACES = org.betterx.worlds.together.tag.CommonItemTags.FURNACES;
|
||||
public static final TagKey<Item> FURNACES = org.betterx.worlds.together.tag.v3.CommonItemTags.FURNACES;
|
||||
/**
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.CommonItemTags#IRON_INGOTS}
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.v3.CommonItemTags#IRON_INGOTS}
|
||||
**/
|
||||
@Deprecated(forRemoval = true)
|
||||
public static final TagKey<Item> IRON_INGOTS = org.betterx.worlds.together.tag.CommonItemTags.IRON_INGOTS;
|
||||
public static final TagKey<Item> IRON_INGOTS = org.betterx.worlds.together.tag.v3.CommonItemTags.IRON_INGOTS;
|
||||
/**
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.CommonItemTags#LEAVES}
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.v3.CommonItemTags#LEAVES}
|
||||
**/
|
||||
@Deprecated(forRemoval = true)
|
||||
public static final TagKey<Item> LEAVES = org.betterx.worlds.together.tag.CommonItemTags.LEAVES;
|
||||
public static final TagKey<Item> LEAVES = org.betterx.worlds.together.tag.v3.CommonItemTags.LEAVES;
|
||||
/**
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.CommonItemTags#SAPLINGS}
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.v3.CommonItemTags#SAPLINGS}
|
||||
**/
|
||||
@Deprecated(forRemoval = true)
|
||||
public static final TagKey<Item> SAPLINGS = org.betterx.worlds.together.tag.CommonItemTags.SAPLINGS;
|
||||
public static final TagKey<Item> SAPLINGS = org.betterx.worlds.together.tag.v3.CommonItemTags.SAPLINGS;
|
||||
/**
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.CommonItemTags#SOUL_GROUND}
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.v3.CommonItemTags#SOUL_GROUND}
|
||||
**/
|
||||
@Deprecated(forRemoval = true)
|
||||
public static final TagKey<Item> SOUL_GROUND = org.betterx.worlds.together.tag.CommonItemTags.SOUL_GROUND;
|
||||
public static final TagKey<Item> SOUL_GROUND = org.betterx.worlds.together.tag.v3.CommonItemTags.SOUL_GROUND;
|
||||
/**
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.CommonItemTags#WOODEN_BARREL}
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.v3.CommonItemTags#WOODEN_BARREL}
|
||||
**/
|
||||
@Deprecated(forRemoval = true)
|
||||
public static final TagKey<Item> WOODEN_BARREL = org.betterx.worlds.together.tag.CommonItemTags.WOODEN_BARREL;
|
||||
public static final TagKey<Item> WOODEN_BARREL = org.betterx.worlds.together.tag.v3.CommonItemTags.WOODEN_BARREL;
|
||||
/**
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.CommonItemTags#WOODEN_CHEST}
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.v3.CommonItemTags#WOODEN_CHEST}
|
||||
**/
|
||||
@Deprecated(forRemoval = true)
|
||||
public static final TagKey<Item> WOODEN_CHEST = org.betterx.worlds.together.tag.CommonItemTags.WOODEN_CHEST;
|
||||
public static final TagKey<Item> WOODEN_CHEST = org.betterx.worlds.together.tag.v3.CommonItemTags.WOODEN_CHEST;
|
||||
/**
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.CommonItemTags#WORKBENCHES}
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.v3.CommonItemTags#WORKBENCHES}
|
||||
**/
|
||||
@Deprecated(forRemoval = true)
|
||||
public static final TagKey<Item> WORKBENCHES = org.betterx.worlds.together.tag.CommonItemTags.WORKBENCHES;
|
||||
public static final TagKey<Item> WORKBENCHES = org.betterx.worlds.together.tag.v3.CommonItemTags.WORKBENCHES;
|
||||
|
||||
}
|
||||
|
|
|
@ -1,46 +1,48 @@
|
|||
package org.betterx.bclib.api.v2.tag;
|
||||
|
||||
import org.betterx.worlds.together.tag.v3.MineableTags;
|
||||
|
||||
import net.minecraft.tags.TagKey;
|
||||
import net.minecraft.world.level.block.Block;
|
||||
|
||||
/**
|
||||
* @deprecated Replaced by {@link org.betterx.worlds.together.tag.MineableTags}
|
||||
* @deprecated Replaced by {@link MineableTags}
|
||||
*/
|
||||
@Deprecated(forRemoval = true)
|
||||
public class NamedMineableTags {
|
||||
/**
|
||||
* @deprecated use {@link org.betterx.worlds.together.tag.MineableTags#AXE} instead
|
||||
* @deprecated use {@link MineableTags#AXE} instead
|
||||
**/
|
||||
@Deprecated(forRemoval = true)
|
||||
public static final TagKey<Block> AXE = org.betterx.worlds.together.tag.MineableTags.AXE;
|
||||
public static final TagKey<Block> AXE = MineableTags.AXE;
|
||||
/**
|
||||
* @deprecated use {@link org.betterx.worlds.together.tag.MineableTags#HOE} instead
|
||||
* @deprecated use {@link MineableTags#HOE} instead
|
||||
**/
|
||||
@Deprecated(forRemoval = true)
|
||||
public static final TagKey<Block> HOE = org.betterx.worlds.together.tag.MineableTags.HOE;
|
||||
public static final TagKey<Block> HOE = MineableTags.HOE;
|
||||
/**
|
||||
* @deprecated use {@link org.betterx.worlds.together.tag.MineableTags#PICKAXE} instead
|
||||
* @deprecated use {@link MineableTags#PICKAXE} instead
|
||||
**/
|
||||
@Deprecated(forRemoval = true)
|
||||
public static final TagKey<Block> PICKAXE = org.betterx.worlds.together.tag.MineableTags.PICKAXE;
|
||||
public static final TagKey<Block> PICKAXE = MineableTags.PICKAXE;
|
||||
/**
|
||||
* @deprecated use {@link org.betterx.worlds.together.tag.MineableTags#SHEARS} instead
|
||||
* @deprecated use {@link MineableTags#SHEARS} instead
|
||||
**/
|
||||
@Deprecated(forRemoval = true)
|
||||
public static final TagKey<Block> SHEARS = org.betterx.worlds.together.tag.MineableTags.SHEARS;
|
||||
public static final TagKey<Block> SHEARS = MineableTags.SHEARS;
|
||||
/**
|
||||
* @deprecated use {@link org.betterx.worlds.together.tag.MineableTags#SHOVEL} instead
|
||||
* @deprecated use {@link MineableTags#SHOVEL} instead
|
||||
**/
|
||||
@Deprecated(forRemoval = true)
|
||||
public static final TagKey<Block> SHOVEL = org.betterx.worlds.together.tag.MineableTags.SHOVEL;
|
||||
public static final TagKey<Block> SHOVEL = MineableTags.SHOVEL;
|
||||
/**
|
||||
* @deprecated use {@link org.betterx.worlds.together.tag.MineableTags#SWORD} instead
|
||||
* @deprecated use {@link MineableTags#SWORD} instead
|
||||
**/
|
||||
@Deprecated(forRemoval = true)
|
||||
public static final TagKey<Block> SWORD = org.betterx.worlds.together.tag.MineableTags.SWORD;
|
||||
public static final TagKey<Block> SWORD = MineableTags.SWORD;
|
||||
/**
|
||||
* @deprecated use {@link org.betterx.worlds.together.tag.MineableTags#HAMMER} instead
|
||||
* @deprecated use {@link MineableTags#HAMMER} instead
|
||||
**/
|
||||
@Deprecated(forRemoval = true)
|
||||
public static final TagKey<Block> HAMMER = org.betterx.worlds.together.tag.MineableTags.HAMMER;
|
||||
public static final TagKey<Block> HAMMER = MineableTags.HAMMER;
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
package org.betterx.bclib.api.v2.tag;
|
||||
|
||||
import org.betterx.worlds.together.tag.ToolTags;
|
||||
import org.betterx.worlds.together.tag.v3.ToolTags;
|
||||
|
||||
import net.minecraft.tags.TagKey;
|
||||
import net.minecraft.world.item.Item;
|
||||
|
|
|
@ -2,9 +2,9 @@ package org.betterx.bclib.api.v2.tag;
|
|||
|
||||
import org.betterx.bclib.api.v2.levelgen.biomes.BiomeAPI;
|
||||
import org.betterx.worlds.together.mixin.common.DiggerItemAccessor;
|
||||
import org.betterx.worlds.together.tag.CommonBlockTags;
|
||||
import org.betterx.worlds.together.tag.TagManager;
|
||||
import org.betterx.worlds.together.tag.TagRegistry;
|
||||
import org.betterx.worlds.together.tag.v3.CommonBlockTags;
|
||||
import org.betterx.worlds.together.tag.v3.TagManager;
|
||||
import org.betterx.worlds.together.tag.v3.TagRegistry;
|
||||
|
||||
import net.minecraft.core.DefaultedRegistry;
|
||||
import net.minecraft.core.Registry;
|
||||
|
|
|
@ -2,7 +2,7 @@ package org.betterx.bclib.api.v2.tag;
|
|||
|
||||
import org.betterx.bclib.BCLib;
|
||||
import org.betterx.bclib.api.v2.levelgen.biomes.InternalBiomeAPI;
|
||||
import org.betterx.worlds.together.tag.TagRegistry;
|
||||
import org.betterx.worlds.together.tag.v3.TagRegistry;
|
||||
|
||||
import net.minecraft.core.DefaultedRegistry;
|
||||
import net.minecraft.core.Registry;
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
package org.betterx.bclib.api.v3.levelgen.features;
|
||||
|
||||
import org.betterx.worlds.together.tag.CommonBlockTags;
|
||||
import org.betterx.worlds.together.tag.v3.CommonBlockTags;
|
||||
|
||||
import net.minecraft.tags.BlockTags;
|
||||
import net.minecraft.world.level.levelgen.blockpredicates.BlockPredicate;
|
||||
|
|
|
@ -2,7 +2,7 @@ package org.betterx.bclib.api.v3.levelgen.features;
|
|||
|
||||
import org.betterx.bclib.api.v2.levelgen.features.config.PlaceFacingBlockConfig;
|
||||
import org.betterx.bclib.api.v2.levelgen.features.placement.*;
|
||||
import org.betterx.worlds.together.tag.CommonBlockTags;
|
||||
import org.betterx.worlds.together.tag.v3.CommonBlockTags;
|
||||
|
||||
import net.minecraft.core.Direction;
|
||||
import net.minecraft.core.Holder;
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
package org.betterx.bclib.blocks;
|
||||
|
||||
import org.betterx.worlds.together.tag.MineableTags;
|
||||
import org.betterx.worlds.together.tag.TagManager;
|
||||
import org.betterx.worlds.together.tag.v3.MineableTags;
|
||||
import org.betterx.worlds.together.tag.v3.TagManager;
|
||||
|
||||
import net.minecraft.core.BlockPos;
|
||||
import net.minecraft.server.level.ServerPlayer;
|
||||
|
|
|
@ -4,8 +4,8 @@ import org.betterx.bclib.client.models.BasePatterns;
|
|||
import org.betterx.bclib.client.models.ModelsHelper;
|
||||
import org.betterx.bclib.client.models.PatternsHelper;
|
||||
import org.betterx.bclib.client.sound.BlockSounds;
|
||||
import org.betterx.worlds.together.tag.MineableTags;
|
||||
import org.betterx.worlds.together.tag.TagManager;
|
||||
import org.betterx.worlds.together.tag.v3.MineableTags;
|
||||
import org.betterx.worlds.together.tag.v3.TagManager;
|
||||
|
||||
import net.minecraft.client.renderer.block.model.BlockModel;
|
||||
import net.minecraft.client.resources.model.UnbakedModel;
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
package org.betterx.bclib.blocks;
|
||||
|
||||
import org.betterx.worlds.together.tag.MineableTags;
|
||||
import org.betterx.worlds.together.tag.TagManager;
|
||||
import org.betterx.worlds.together.tag.v3.MineableTags;
|
||||
import org.betterx.worlds.together.tag.v3.TagManager;
|
||||
|
||||
import net.minecraft.core.BlockPos;
|
||||
import net.minecraft.server.level.ServerPlayer;
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
package org.betterx.bclib.commands;
|
||||
|
||||
import org.betterx.bclib.util.BlocksHelper;
|
||||
import org.betterx.worlds.together.tag.CommonBlockTags;
|
||||
import org.betterx.worlds.together.tag.v3.CommonBlockTags;
|
||||
|
||||
import com.mojang.brigadier.Command;
|
||||
import com.mojang.brigadier.CommandDispatcher;
|
||||
|
|
|
@ -6,7 +6,7 @@ import org.betterx.bclib.complexmaterials.entry.RecipeEntry;
|
|||
import org.betterx.bclib.config.PathConfig;
|
||||
import org.betterx.bclib.registry.BlockRegistry;
|
||||
import org.betterx.bclib.registry.ItemRegistry;
|
||||
import org.betterx.worlds.together.tag.TagManager;
|
||||
import org.betterx.worlds.together.tag.v3.TagManager;
|
||||
|
||||
import net.minecraft.resources.ResourceLocation;
|
||||
import net.minecraft.tags.TagKey;
|
||||
|
|
|
@ -5,9 +5,9 @@ import org.betterx.bclib.blocks.*;
|
|||
import org.betterx.bclib.complexmaterials.entry.BlockEntry;
|
||||
import org.betterx.bclib.complexmaterials.entry.RecipeEntry;
|
||||
import org.betterx.bclib.recipes.GridRecipe;
|
||||
import org.betterx.worlds.together.tag.CommonBlockTags;
|
||||
import org.betterx.worlds.together.tag.CommonItemTags;
|
||||
import org.betterx.worlds.together.tag.TagManager;
|
||||
import org.betterx.worlds.together.tag.v3.CommonBlockTags;
|
||||
import org.betterx.worlds.together.tag.v3.CommonItemTags;
|
||||
import org.betterx.worlds.together.tag.v3.TagManager;
|
||||
|
||||
import net.minecraft.resources.ResourceLocation;
|
||||
import net.minecraft.tags.BlockTags;
|
||||
|
|
|
@ -2,7 +2,7 @@ package org.betterx.bclib.complexmaterials.entry;
|
|||
|
||||
import org.betterx.bclib.complexmaterials.ComplexMaterial;
|
||||
import org.betterx.bclib.registry.BlockRegistry;
|
||||
import org.betterx.worlds.together.tag.TagManager;
|
||||
import org.betterx.worlds.together.tag.v3.TagManager;
|
||||
|
||||
import net.minecraft.resources.ResourceLocation;
|
||||
import net.minecraft.tags.TagKey;
|
||||
|
|
|
@ -2,7 +2,7 @@ package org.betterx.bclib.complexmaterials.entry;
|
|||
|
||||
import org.betterx.bclib.complexmaterials.ComplexMaterial;
|
||||
import org.betterx.bclib.registry.ItemRegistry;
|
||||
import org.betterx.worlds.together.tag.TagManager;
|
||||
import org.betterx.worlds.together.tag.v3.TagManager;
|
||||
|
||||
import net.minecraft.resources.ResourceLocation;
|
||||
import net.minecraft.tags.TagKey;
|
||||
|
|
|
@ -2,7 +2,7 @@ package org.betterx.bclib.integration;
|
|||
|
||||
import org.betterx.bclib.BCLib;
|
||||
import org.betterx.bclib.api.v2.levelgen.features.BCLFeature;
|
||||
import org.betterx.worlds.together.tag.TagManager;
|
||||
import org.betterx.worlds.together.tag.v3.TagManager;
|
||||
|
||||
import net.minecraft.core.Holder;
|
||||
import net.minecraft.core.Registry;
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
package org.betterx.bclib.items.tool;
|
||||
|
||||
|
||||
import org.betterx.worlds.together.tag.CommonItemTags;
|
||||
import org.betterx.worlds.together.tag.TagManager;
|
||||
import org.betterx.worlds.together.tag.v3.CommonItemTags;
|
||||
import org.betterx.worlds.together.tag.v3.TagManager;
|
||||
|
||||
import net.minecraft.world.item.Item;
|
||||
import net.minecraft.world.item.ItemStack;
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
package org.betterx.bclib.mixin.common;
|
||||
|
||||
import org.betterx.worlds.together.tag.CommonBlockTags;
|
||||
import org.betterx.worlds.together.tag.v3.CommonBlockTags;
|
||||
|
||||
import net.minecraft.world.entity.player.Player;
|
||||
import net.minecraft.world.inventory.ContainerLevelAccess;
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
package org.betterx.bclib.mixin.common;
|
||||
|
||||
import org.betterx.bclib.util.MethodReplace;
|
||||
import org.betterx.worlds.together.tag.CommonBlockTags;
|
||||
import org.betterx.worlds.together.tag.v3.CommonBlockTags;
|
||||
|
||||
import net.minecraft.core.BlockPos;
|
||||
import net.minecraft.world.level.Level;
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
package org.betterx.bclib.mixin.common;
|
||||
|
||||
import org.betterx.worlds.together.tag.CommonBlockTags;
|
||||
import org.betterx.worlds.together.tag.v3.CommonBlockTags;
|
||||
|
||||
import net.minecraft.core.BlockPos;
|
||||
import net.minecraft.core.Direction;
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
package org.betterx.bclib.mixin.common;
|
||||
|
||||
import org.betterx.worlds.together.tag.CommonBlockTags;
|
||||
import org.betterx.worlds.together.tag.v3.CommonBlockTags;
|
||||
|
||||
import net.minecraft.core.BlockPos;
|
||||
import net.minecraft.world.level.BlockGetter;
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
package org.betterx.bclib.mixin.common.shears;
|
||||
|
||||
import org.betterx.worlds.together.tag.CommonItemTags;
|
||||
import org.betterx.worlds.together.tag.v3.CommonItemTags;
|
||||
|
||||
import net.minecraft.advancements.critereon.ItemPredicate;
|
||||
import net.minecraft.world.item.Item;
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
package org.betterx.bclib.presets;
|
||||
|
||||
import org.betterx.worlds.together.tag.TagRegistry;
|
||||
import org.betterx.worlds.together.tag.v3.TagRegistry;
|
||||
|
||||
import net.minecraft.resources.ResourceKey;
|
||||
import net.minecraft.resources.ResourceLocation;
|
||||
|
|
|
@ -5,7 +5,7 @@ import org.betterx.bclib.config.PathConfig;
|
|||
import org.betterx.bclib.interfaces.UnknownReceipBookCategory;
|
||||
import org.betterx.bclib.util.ItemUtil;
|
||||
import org.betterx.bclib.util.RecipeHelper;
|
||||
import org.betterx.worlds.together.tag.CommonItemTags;
|
||||
import org.betterx.worlds.together.tag.v3.CommonItemTags;
|
||||
|
||||
import com.mojang.brigadier.exceptions.CommandSyntaxException;
|
||||
import net.minecraft.core.NonNullList;
|
||||
|
|
|
@ -2,7 +2,7 @@ package org.betterx.bclib.recipes;
|
|||
|
||||
import org.betterx.bclib.BCLib;
|
||||
import org.betterx.bclib.config.Configs;
|
||||
import org.betterx.worlds.together.tag.CommonItemTags;
|
||||
import org.betterx.worlds.together.tag.v3.CommonItemTags;
|
||||
|
||||
import net.minecraft.tags.ItemTags;
|
||||
import net.minecraft.world.item.Items;
|
||||
|
|
|
@ -5,10 +5,10 @@ import org.betterx.bclib.blocks.BaseOreBlock;
|
|||
import org.betterx.bclib.blocks.FeatureSaplingBlock;
|
||||
import org.betterx.bclib.config.PathConfig;
|
||||
import org.betterx.bclib.interfaces.CustomItemProvider;
|
||||
import org.betterx.worlds.together.tag.CommonBlockTags;
|
||||
import org.betterx.worlds.together.tag.CommonItemTags;
|
||||
import org.betterx.worlds.together.tag.MineableTags;
|
||||
import org.betterx.worlds.together.tag.TagManager;
|
||||
import org.betterx.worlds.together.tag.v3.CommonBlockTags;
|
||||
import org.betterx.worlds.together.tag.v3.CommonItemTags;
|
||||
import org.betterx.worlds.together.tag.v3.MineableTags;
|
||||
import org.betterx.worlds.together.tag.v3.TagManager;
|
||||
|
||||
import net.minecraft.core.Registry;
|
||||
import net.minecraft.resources.ResourceLocation;
|
||||
|
|
|
@ -9,9 +9,9 @@ import org.betterx.bclib.items.tool.BaseAxeItem;
|
|||
import org.betterx.bclib.items.tool.BaseHoeItem;
|
||||
import org.betterx.bclib.items.tool.BasePickaxeItem;
|
||||
import org.betterx.bclib.items.tool.BaseShearsItem;
|
||||
import org.betterx.worlds.together.tag.CommonItemTags;
|
||||
import org.betterx.worlds.together.tag.TagManager;
|
||||
import org.betterx.worlds.together.tag.ToolTags;
|
||||
import org.betterx.worlds.together.tag.v3.CommonItemTags;
|
||||
import org.betterx.worlds.together.tag.v3.TagManager;
|
||||
import org.betterx.worlds.together.tag.v3.ToolTags;
|
||||
|
||||
import net.minecraft.core.BlockSource;
|
||||
import net.minecraft.core.Direction;
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
package org.betterx.bclib.util;
|
||||
|
||||
import org.betterx.worlds.together.tag.CommonBlockTags;
|
||||
import org.betterx.worlds.together.tag.v3.CommonBlockTags;
|
||||
|
||||
import net.minecraft.core.BlockPos;
|
||||
import net.minecraft.core.BlockPos.MutableBlockPos;
|
||||
|
|
|
@ -2,7 +2,7 @@ package org.betterx.bclib.world.structures;
|
|||
|
||||
import org.betterx.bclib.api.v2.levelgen.structures.BCLStructureBuilder;
|
||||
import org.betterx.bclib.util.MHelper;
|
||||
import org.betterx.worlds.together.tag.TagManager;
|
||||
import org.betterx.worlds.together.tag.v3.TagManager;
|
||||
|
||||
import com.mojang.serialization.Codec;
|
||||
import net.minecraft.resources.ResourceLocation;
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
package org.betterx.worlds.together;
|
||||
|
||||
import org.betterx.bclib.util.Logger;
|
||||
import org.betterx.worlds.together.tag.TagManager;
|
||||
import org.betterx.worlds.together.tag.v3.TagManager;
|
||||
import org.betterx.worlds.together.world.WorldConfig;
|
||||
import org.betterx.worlds.together.worldPreset.WorldPresets;
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
package org.betterx.worlds.together.flatLevel;
|
||||
|
||||
import org.betterx.worlds.together.tag.TagManager;
|
||||
import org.betterx.worlds.together.tag.TagRegistry;
|
||||
import org.betterx.worlds.together.tag.v3.TagManager;
|
||||
import org.betterx.worlds.together.tag.v3.TagRegistry;
|
||||
|
||||
import net.minecraft.core.Registry;
|
||||
import net.minecraft.resources.ResourceKey;
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
package org.betterx.worlds.together.mixin.common;
|
||||
|
||||
import org.betterx.worlds.together.tag.TagManager;
|
||||
import org.betterx.worlds.together.tag.v3.TagManager;
|
||||
|
||||
import net.minecraft.resources.ResourceLocation;
|
||||
import net.minecraft.tags.TagLoader;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
package org.betterx.worlds.together.tag;
|
||||
package org.betterx.worlds.together.tag.v3;
|
||||
|
||||
import net.minecraft.tags.TagKey;
|
||||
import net.minecraft.world.level.biome.Biome;
|
|
@ -1,4 +1,4 @@
|
|||
package org.betterx.worlds.together.tag;
|
||||
package org.betterx.worlds.together.tag.v3;
|
||||
|
||||
import net.minecraft.tags.BlockTags;
|
||||
import net.minecraft.tags.TagKey;
|
|
@ -1,4 +1,4 @@
|
|||
package org.betterx.worlds.together.tag;
|
||||
package org.betterx.worlds.together.tag.v3;
|
||||
|
||||
import net.minecraft.tags.TagKey;
|
||||
import net.minecraft.world.item.Item;
|
|
@ -1,4 +1,4 @@
|
|||
package org.betterx.worlds.together.tag;
|
||||
package org.betterx.worlds.together.tag.v3;
|
||||
|
||||
import net.minecraft.tags.BlockTags;
|
||||
import net.minecraft.tags.TagKey;
|
|
@ -1,4 +1,4 @@
|
|||
package org.betterx.worlds.together.tag;
|
||||
package org.betterx.worlds.together.tag.v3;
|
||||
|
||||
import org.betterx.bclib.api.v2.levelgen.biomes.BiomeAPI;
|
||||
import org.betterx.bclib.api.v2.tag.TagAPI;
|
|
@ -1,4 +1,4 @@
|
|||
package org.betterx.worlds.together.tag;
|
||||
package org.betterx.worlds.together.tag.v3;
|
||||
|
||||
import org.betterx.bclib.BCLib;
|
||||
import org.betterx.bclib.api.v2.levelgen.biomes.InternalBiomeAPI;
|
|
@ -1,4 +1,4 @@
|
|||
package org.betterx.worlds.together.tag;
|
||||
package org.betterx.worlds.together.tag.v3;
|
||||
|
||||
import net.minecraft.tags.TagKey;
|
||||
import net.minecraft.world.item.Item;
|
|
@ -2,8 +2,8 @@ package org.betterx.worlds.together.worldPreset;
|
|||
|
||||
import org.betterx.bclib.registry.PresetsRegistry;
|
||||
import org.betterx.worlds.together.WorldsTogether;
|
||||
import org.betterx.worlds.together.tag.TagManager;
|
||||
import org.betterx.worlds.together.tag.TagRegistry;
|
||||
import org.betterx.worlds.together.tag.v3.TagManager;
|
||||
import org.betterx.worlds.together.tag.v3.TagRegistry;
|
||||
import org.betterx.worlds.together.world.WorldGenUtil;
|
||||
import org.betterx.worlds.together.worldPreset.client.WorldPresetsClient;
|
||||
import org.betterx.worlds.together.worldPreset.settings.VanillaWorldPresetSettings;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue