mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2025-06-11 20:13:55 +00:00
Add support for 1.20.3 and 1.20.4 (#2512)
* 1.20.3 * 1.20.3 ItemTypes * 1.20.3 * 1.20.3 * 1.20.4 * Fixup refractions * Move adapters to _4
This commit is contained in:
committed by
GitHub
parent
ea6138ce1f
commit
605743321f
@ -86,6 +86,11 @@ public class MultiStageReorder extends AbstractBufferingExtent implements Reorde
|
||||
priorityMap.put(BlockTypes.WHITE_BED, PlacementPriority.LAST);
|
||||
priorityMap.put(BlockTypes.YELLOW_BED, PlacementPriority.LAST);
|
||||
priorityMap.put(BlockTypes.GRASS, PlacementPriority.LAST);
|
||||
// Keep "grass" for <1.20.3 compat
|
||||
@SuppressWarnings("deprecation")
|
||||
BlockType grass = BlockTypes.GRASS;
|
||||
priorityMap.put(grass, PlacementPriority.LAST);
|
||||
priorityMap.put(BlockTypes.SHORT_GRASS, PlacementPriority.LAST);
|
||||
priorityMap.put(BlockTypes.TALL_GRASS, PlacementPriority.LAST);
|
||||
priorityMap.put(BlockTypes.ROSE_BUSH, PlacementPriority.LAST);
|
||||
priorityMap.put(BlockTypes.DANDELION, PlacementPriority.LAST);
|
||||
|
@ -29,6 +29,7 @@ import com.sk89q.worldedit.function.pattern.RandomPattern;
|
||||
import com.sk89q.worldedit.internal.Constants;
|
||||
import com.sk89q.worldedit.math.BlockVector3;
|
||||
import com.sk89q.worldedit.world.block.BlockState;
|
||||
import com.sk89q.worldedit.world.block.BlockType;
|
||||
import com.sk89q.worldedit.world.block.BlockTypes;
|
||||
|
||||
/**
|
||||
@ -103,7 +104,12 @@ public class FloraGenerator implements RegionFunction {
|
||||
*/
|
||||
public static Pattern getTemperatePattern() {
|
||||
RandomPattern pattern = new RandomPattern();
|
||||
pattern.add(BlockTypes.GRASS.getDefaultState(), 300);
|
||||
BlockType grass = BlockTypes.SHORT_GRASS;
|
||||
if (grass == null) {
|
||||
// Fallback for <1.20.3 compat
|
||||
grass = BlockTypes.GRASS;
|
||||
}
|
||||
pattern.add(grass.getDefaultState(), 300);
|
||||
pattern.add(BlockTypes.POPPY.getDefaultState(), 5);
|
||||
pattern.add(BlockTypes.DANDELION.getDefaultState(), 5);
|
||||
return pattern;
|
||||
|
@ -48,6 +48,7 @@ public final class BlockCategories {
|
||||
public static final BlockCategory BIG_DRIPLEAF_PLACEABLE = get("minecraft:big_dripleaf_placeable");
|
||||
public static final BlockCategory BIRCH_LOGS = get("minecraft:birch_logs");
|
||||
public static final BlockCategory BUTTONS = get("minecraft:buttons");
|
||||
public static final BlockCategory CAMEL_SAND_STEP_SOUND_BLOCKS = get("minecraft:camel_sand_step_sound_blocks");
|
||||
public static final BlockCategory CAMPFIRES = get("minecraft:campfires");
|
||||
public static final BlockCategory CANDLE_CAKES = get("minecraft:candle_cakes");
|
||||
public static final BlockCategory CANDLES = get("minecraft:candles");
|
||||
@ -60,6 +61,7 @@ public final class BlockCategories {
|
||||
public static final BlockCategory COAL_ORES = get("minecraft:coal_ores");
|
||||
public static final BlockCategory COMBINATION_STEP_SOUND_BLOCKS = get("minecraft:combination_step_sound_blocks");
|
||||
public static final BlockCategory COMPLETES_FIND_TREE_TUTORIAL = get("minecraft:completes_find_tree_tutorial");
|
||||
public static final BlockCategory CONCRETE_POWDER = get("minecraft:concrete_powder");
|
||||
public static final BlockCategory CONVERTABLE_TO_MUD = get("minecraft:convertable_to_mud");
|
||||
public static final BlockCategory COPPER_ORES = get("minecraft:copper_ores");
|
||||
public static final BlockCategory CORAL_BLOCKS = get("minecraft:coral_blocks");
|
||||
|
@ -415,6 +415,8 @@ public final class BlockTypes {
|
||||
@Nullable
|
||||
public static final BlockType CHISELED_BOOKSHELF = init();
|
||||
@Nullable
|
||||
public static final BlockType CHISELED_COPPER = init();
|
||||
@Nullable
|
||||
public static final BlockType CHISELED_DEEPSLATE = init();
|
||||
@Nullable
|
||||
public static final BlockType CHISELED_NETHER_BRICKS = init();
|
||||
@ -429,6 +431,10 @@ public final class BlockTypes {
|
||||
@Nullable
|
||||
public static final BlockType CHISELED_STONE_BRICKS = init();
|
||||
@Nullable
|
||||
public static final BlockType CHISELED_TUFF = init();
|
||||
@Nullable
|
||||
public static final BlockType CHISELED_TUFF_BRICKS = init();
|
||||
@Nullable
|
||||
public static final BlockType CHORUS_FLOWER = init();
|
||||
@Nullable
|
||||
public static final BlockType CHORUS_PLANT = init();
|
||||
@ -471,6 +477,12 @@ public final class BlockTypes {
|
||||
@Nullable
|
||||
public static final BlockType COPPER_BLOCK = init();
|
||||
@Nullable
|
||||
public static final BlockType COPPER_BULB = init();
|
||||
@Nullable
|
||||
public static final BlockType COPPER_DOOR = init();
|
||||
@Nullable
|
||||
public static final BlockType COPPER_GRATE = init();
|
||||
@Nullable
|
||||
public static final BlockType CORNFLOWER = init();
|
||||
@Nullable
|
||||
public static final BlockType CRACKED_DEEPSLATE_BRICKS = init();
|
||||
@ -673,6 +685,8 @@ public final class BlockTypes {
|
||||
@Nullable
|
||||
public static final BlockType DEEPSLATE_COPPER_ORE = init();
|
||||
@Nullable
|
||||
public static final BlockType COPPER_TRAPDOOR = init();
|
||||
@Nullable
|
||||
public static final BlockType DEEPSLATE_DIAMOND_ORE = init();
|
||||
@Nullable
|
||||
public static final BlockType DEEPSLATE_EMERALD_ORE = init();
|
||||
@ -733,6 +747,8 @@ public final class BlockTypes {
|
||||
@Nullable
|
||||
public static final BlockType ENDER_CHEST = init();
|
||||
@Nullable
|
||||
public static final BlockType EXPOSED_CHISELED_COPPER = init();
|
||||
@Nullable
|
||||
public static final BlockType END_GATEWAY = init();
|
||||
@Nullable
|
||||
public static final BlockType END_PORTAL = init();
|
||||
@ -753,6 +769,14 @@ public final class BlockTypes {
|
||||
@Nullable
|
||||
public static final BlockType EXPOSED_COPPER = init();
|
||||
@Nullable
|
||||
public static final BlockType EXPOSED_COPPER_BULB = init();
|
||||
@Nullable
|
||||
public static final BlockType EXPOSED_COPPER_DOOR = init();
|
||||
@Nullable
|
||||
public static final BlockType EXPOSED_COPPER_GRATE = init();
|
||||
@Nullable
|
||||
public static final BlockType EXPOSED_COPPER_TRAPDOOR = init();
|
||||
@Nullable
|
||||
public static final BlockType EXPOSED_CUT_COPPER = init();
|
||||
@Nullable
|
||||
public static final BlockType EXPOSED_CUT_COPPER_SLAB = init();
|
||||
@ -808,7 +832,7 @@ public final class BlockTypes {
|
||||
public static final BlockType GRANITE_STAIRS = init();
|
||||
@Nullable
|
||||
public static final BlockType GRANITE_WALL = init();
|
||||
@Nullable
|
||||
@Nullable @Deprecated
|
||||
public static final BlockType GRASS = init();
|
||||
@Nullable
|
||||
public static final BlockType GRASS_BLOCK = init();
|
||||
@ -901,6 +925,8 @@ public final class BlockTypes {
|
||||
@Nullable
|
||||
public static final BlockType INFESTED_CRACKED_STONE_BRICKS = init();
|
||||
@Nullable
|
||||
public static final BlockType CRAFTER = init();
|
||||
@Nullable
|
||||
public static final BlockType INFESTED_DEEPSLATE = init();
|
||||
@Nullable
|
||||
public static final BlockType INFESTED_MOSSY_STONE_BRICKS = init();
|
||||
@ -1293,8 +1319,18 @@ public final class BlockTypes {
|
||||
@Nullable
|
||||
public static final BlockType OXEYE_DAISY = init();
|
||||
@Nullable
|
||||
public static final BlockType OXIDIZED_CHISELED_COPPER = init();
|
||||
@Nullable
|
||||
public static final BlockType OXIDIZED_COPPER = init();
|
||||
@Nullable
|
||||
public static final BlockType OXIDIZED_COPPER_BULB = init();
|
||||
@Nullable
|
||||
public static final BlockType OXIDIZED_COPPER_DOOR = init();
|
||||
@Nullable
|
||||
public static final BlockType OXIDIZED_COPPER_GRATE = init();
|
||||
@Nullable
|
||||
public static final BlockType OXIDIZED_COPPER_TRAPDOOR = init();
|
||||
@Nullable
|
||||
public static final BlockType OXIDIZED_CUT_COPPER = init();
|
||||
@Nullable
|
||||
public static final BlockType OXIDIZED_CUT_COPPER_SLAB = init();
|
||||
@ -1411,6 +1447,14 @@ public final class BlockTypes {
|
||||
@Nullable
|
||||
public static final BlockType POLISHED_GRANITE_STAIRS = init();
|
||||
@Nullable
|
||||
public static final BlockType POLISHED_TUFF = init();
|
||||
@Nullable
|
||||
public static final BlockType POLISHED_TUFF_SLAB = init();
|
||||
@Nullable
|
||||
public static final BlockType POLISHED_TUFF_STAIRS = init();
|
||||
@Nullable
|
||||
public static final BlockType POLISHED_TUFF_WALL = init();
|
||||
@Nullable
|
||||
public static final BlockType POPPY = init();
|
||||
@Nullable
|
||||
public static final BlockType POTATOES = init();
|
||||
@ -1667,6 +1711,8 @@ public final class BlockTypes {
|
||||
@Nullable
|
||||
public static final BlockType SEAGRASS = init();
|
||||
@Nullable
|
||||
public static final BlockType SHORT_GRASS = init();
|
||||
@Nullable
|
||||
public static final BlockType SEA_LANTERN = init();
|
||||
@Nullable
|
||||
public static final BlockType SEA_PICKLE = init();
|
||||
@ -1874,6 +1920,8 @@ public final class BlockTypes {
|
||||
@Nullable
|
||||
public static final BlockType TRAPPED_CHEST = init();
|
||||
@Nullable
|
||||
public static final BlockType TRIAL_SPAWNER = init();
|
||||
@Nullable
|
||||
public static final BlockType TRIPWIRE = init();
|
||||
@Nullable
|
||||
public static final BlockType TRIPWIRE_HOOK = init();
|
||||
@ -1888,6 +1936,20 @@ public final class BlockTypes {
|
||||
@Nullable
|
||||
public static final BlockType TUFF = init();
|
||||
@Nullable
|
||||
public static final BlockType TUFF_BRICK_SLAB = init();
|
||||
@Nullable
|
||||
public static final BlockType TUFF_BRICK_STAIRS = init();
|
||||
@Nullable
|
||||
public static final BlockType TUFF_BRICK_WALL = init();
|
||||
@Nullable
|
||||
public static final BlockType TUFF_BRICKS = init();
|
||||
@Nullable
|
||||
public static final BlockType TUFF_SLAB = init();
|
||||
@Nullable
|
||||
public static final BlockType TUFF_STAIRS = init();
|
||||
@Nullable
|
||||
public static final BlockType TUFF_WALL = init();
|
||||
@Nullable
|
||||
public static final BlockType TURTLE_EGG = init();
|
||||
@Nullable
|
||||
public static final BlockType TWISTING_VINES = init();
|
||||
@ -1947,16 +2009,36 @@ public final class BlockTypes {
|
||||
@Nullable
|
||||
public static final BlockType WATER_CAULDRON = init();
|
||||
@Nullable
|
||||
public static final BlockType WAXED_CHISELED_COPPER = init();
|
||||
@Nullable
|
||||
public static final BlockType WAXED_COPPER_BLOCK = init();
|
||||
@Nullable
|
||||
public static final BlockType WAXED_COPPER_BULB = init();
|
||||
@Nullable
|
||||
public static final BlockType WAXED_COPPER_DOOR = init();
|
||||
@Nullable
|
||||
public static final BlockType WAXED_COPPER_GRATE = init();
|
||||
@Nullable
|
||||
public static final BlockType WAXED_COPPER_TRAPDOOR = init();
|
||||
@Nullable
|
||||
public static final BlockType WAXED_CUT_COPPER = init();
|
||||
@Nullable
|
||||
public static final BlockType WAXED_CUT_COPPER_SLAB = init();
|
||||
@Nullable
|
||||
public static final BlockType WAXED_CUT_COPPER_STAIRS = init();
|
||||
@ Nullable
|
||||
public static final BlockType WAXED_EXPOSED_CHISELED_COPPER = init();
|
||||
@Nullable
|
||||
public static final BlockType WAXED_EXPOSED_COPPER = init();
|
||||
@Nullable
|
||||
public static final BlockType WAXED_EXPOSED_COPPER_BULB = init();
|
||||
@Nullable
|
||||
public static final BlockType WAXED_EXPOSED_COPPER_DOOR = init();
|
||||
@Nullable
|
||||
public static final BlockType WAXED_EXPOSED_COPPER_GRATE = init();
|
||||
@Nullable
|
||||
public static final BlockType WAXED_EXPOSED_COPPER_TRAPDOOR = init();
|
||||
@Nullable
|
||||
public static final BlockType WAXED_EXPOSED_CUT_COPPER = init();
|
||||
@Nullable
|
||||
public static final BlockType WAXED_EXPOSED_CUT_COPPER_SLAB = init();
|
||||
@ -1965,22 +2047,52 @@ public final class BlockTypes {
|
||||
@Nullable
|
||||
public static final BlockType WAXED_OXIDIZED_COPPER = init();
|
||||
@Nullable
|
||||
public static final BlockType WAXED_OXIDIZED_COPPER_BULB = init();
|
||||
@Nullable
|
||||
public static final BlockType WAXED_OXIDIZED_COPPER_DOOR = init();
|
||||
@Nullable
|
||||
public static final BlockType WAXED_OXIDIZED_COPPER_GRATE = init();
|
||||
@Nullable
|
||||
public static final BlockType WAXED_OXIDIZED_COPPER_TRAPDOOR = init();
|
||||
@Nullable
|
||||
public static final BlockType WAXED_OXIDIZED_CHISELED_COPPER = init();
|
||||
@Nullable
|
||||
public static final BlockType WAXED_OXIDIZED_CUT_COPPER = init();
|
||||
@Nullable
|
||||
public static final BlockType WAXED_OXIDIZED_CUT_COPPER_SLAB = init();
|
||||
@Nullable
|
||||
public static final BlockType WAXED_OXIDIZED_CUT_COPPER_STAIRS = init();
|
||||
@Nullable
|
||||
public static final BlockType WAXED_WEATHERED_CHISELED_COPPER = init();
|
||||
@Nullable
|
||||
public static final BlockType WAXED_WEATHERED_COPPER = init();
|
||||
@Nullable
|
||||
public static final BlockType WAXED_WEATHERED_COPPER_BULB = init();
|
||||
@Nullable
|
||||
public static final BlockType WAXED_WEATHERED_COPPER_DOOR = init();
|
||||
@Nullable
|
||||
public static final BlockType WAXED_WEATHERED_COPPER_GRATE = init();
|
||||
@Nullable
|
||||
public static final BlockType WAXED_WEATHERED_COPPER_TRAPDOOR = init();
|
||||
@Nullable
|
||||
public static final BlockType WAXED_WEATHERED_CUT_COPPER = init();
|
||||
@Nullable
|
||||
public static final BlockType WAXED_WEATHERED_CUT_COPPER_SLAB = init();
|
||||
@Nullable
|
||||
public static final BlockType WAXED_WEATHERED_CUT_COPPER_STAIRS = init();
|
||||
@Nullable
|
||||
public static final BlockType WEATHERED_CHISELED_COPPER = init();
|
||||
@Nullable
|
||||
public static final BlockType WEATHERED_COPPER = init();
|
||||
@Nullable
|
||||
public static final BlockType WEATHERED_COPPER_BULB = init();
|
||||
@Nullable
|
||||
public static final BlockType WEATHERED_COPPER_DOOR = init();
|
||||
@Nullable
|
||||
public static final BlockType WEATHERED_COPPER_GRATE = init();
|
||||
@Nullable
|
||||
public static final BlockType WEATHERED_COPPER_TRAPDOOR = init();
|
||||
@Nullable
|
||||
public static final BlockType WEATHERED_CUT_COPPER = init();
|
||||
@Nullable
|
||||
public static final BlockType WEATHERED_CUT_COPPER_SLAB = init();
|
||||
|
@ -51,6 +51,8 @@ public final class EntityTypes {
|
||||
@Nullable
|
||||
public static final EntityType BOAT = get("minecraft:boat");
|
||||
@Nullable
|
||||
public static final EntityType BREEZE = get("minecraft:breeze");
|
||||
@Nullable
|
||||
public static final EntityType CAMEL = get("minecraft:camel");
|
||||
@Nullable
|
||||
public static final EntityType CAT = get("minecraft:cat");
|
||||
@ -259,6 +261,8 @@ public final class EntityTypes {
|
||||
@Nullable
|
||||
public static final EntityType WARDEN = get("minecraft:warden");
|
||||
@Nullable
|
||||
public static final EntityType WIND_CHARGE = get("minecraft:wind_charge");
|
||||
@Nullable
|
||||
public static final EntityType WITCH = get("minecraft:witch");
|
||||
@Nullable
|
||||
public static final EntityType WITHER = get("minecraft:wither");
|
||||
|
@ -319,6 +319,8 @@ public final class ItemTypes {
|
||||
@Nullable
|
||||
public static final ItemType BREAD = init();
|
||||
@Nullable
|
||||
public static final ItemType BREEZE_SPAWN_EGG = init();
|
||||
@Nullable
|
||||
public static final ItemType BREWER_POTTERY_SHERD = init();
|
||||
@Nullable
|
||||
public static final ItemType BREWING_STAND = init();
|
||||
@ -468,6 +470,8 @@ public final class ItemTypes {
|
||||
@Nullable
|
||||
public static final ItemType CHISELED_BOOKSHELF = init();
|
||||
@Nullable
|
||||
public static final ItemType CHISELED_COPPER = init();
|
||||
@Nullable
|
||||
public static final ItemType CHISELED_DEEPSLATE = init();
|
||||
@Nullable
|
||||
public static final ItemType CHISELED_NETHER_BRICKS = init();
|
||||
@ -482,6 +486,10 @@ public final class ItemTypes {
|
||||
@Nullable
|
||||
public static final ItemType CHISELED_STONE_BRICKS = init();
|
||||
@Nullable
|
||||
public static final ItemType CHISELED_TUFF = init();
|
||||
@Nullable
|
||||
public static final ItemType CHISELED_TUFF_BRICKS = init();
|
||||
@Nullable
|
||||
public static final ItemType CHORUS_FLOWER = init();
|
||||
@Nullable
|
||||
public static final ItemType CHORUS_FRUIT = init();
|
||||
@ -560,10 +568,18 @@ public final class ItemTypes {
|
||||
@Nullable
|
||||
public static final ItemType COPPER_BLOCK = init();
|
||||
@Nullable
|
||||
public static final ItemType COPPER_BULB = init();
|
||||
@Nullable
|
||||
public static final ItemType COPPER_DOOR = init();
|
||||
@Nullable
|
||||
public static final ItemType COPPER_GRATE = init();
|
||||
@Nullable
|
||||
public static final ItemType COPPER_INGOT = init();
|
||||
@Nullable
|
||||
public static final ItemType COPPER_ORE = init();
|
||||
@Nullable
|
||||
public static final ItemType COPPER_TRAPDOOR = init();
|
||||
@Nullable
|
||||
public static final ItemType CORNFLOWER = init();
|
||||
@Nullable
|
||||
public static final ItemType COW_SPAWN_EGG = init();
|
||||
@ -578,6 +594,8 @@ public final class ItemTypes {
|
||||
@Nullable
|
||||
public static final ItemType CRACKED_STONE_BRICKS = init();
|
||||
@Nullable
|
||||
public static final ItemType CRAFTER = init();
|
||||
@Nullable
|
||||
public static final ItemType CRAFTING_TABLE = init();
|
||||
@Nullable
|
||||
public static final ItemType CREEPER_BANNER_PATTERN = init();
|
||||
@ -903,8 +921,18 @@ public final class ItemTypes {
|
||||
@Nullable
|
||||
public static final ItemType EXPLORER_POTTERY_SHERD = init();
|
||||
@Nullable
|
||||
public static final ItemType EXPOSED_CHISELED_COPPER = init();
|
||||
@Nullable
|
||||
public static final ItemType EXPOSED_COPPER = init();
|
||||
@Nullable
|
||||
public static final ItemType EXPOSED_COPPER_BULB = init();
|
||||
@Nullable
|
||||
public static final ItemType EXPOSED_COPPER_DOOR = init();
|
||||
@Nullable
|
||||
public static final ItemType EXPOSED_COPPER_GRATE = init();
|
||||
@Nullable
|
||||
public static final ItemType EXPOSED_COPPER_TRAPDOOR = init();
|
||||
@Nullable
|
||||
public static final ItemType EXPOSED_CUT_COPPER = init();
|
||||
@Nullable
|
||||
public static final ItemType EXPOSED_CUT_COPPER_SLAB = init();
|
||||
@ -1036,7 +1064,7 @@ public final class ItemTypes {
|
||||
public static final ItemType GRANITE_STAIRS = init();
|
||||
@Nullable
|
||||
public static final ItemType GRANITE_WALL = init();
|
||||
@Nullable
|
||||
@Nullable @Deprecated
|
||||
public static final ItemType GRASS = init();
|
||||
@Nullable
|
||||
public static final ItemType GRASS_BLOCK = init();
|
||||
@ -1670,8 +1698,18 @@ public final class ItemTypes {
|
||||
@Nullable
|
||||
public static final ItemType OXEYE_DAISY = init();
|
||||
@Nullable
|
||||
public static final ItemType OXIDIZED_CHISELED_COPPER = init();
|
||||
@Nullable
|
||||
public static final ItemType OXIDIZED_COPPER = init();
|
||||
@Nullable
|
||||
public static final ItemType OXIDIZED_COPPER_BULB = init();
|
||||
@Nullable
|
||||
public static final ItemType OXIDIZED_COPPER_DOOR = init();
|
||||
@Nullable
|
||||
public static final ItemType OXIDIZED_COPPER_GRATE = init();
|
||||
@Nullable
|
||||
public static final ItemType OXIDIZED_COPPER_TRAPDOOR = init();
|
||||
@Nullable
|
||||
public static final ItemType OXIDIZED_CUT_COPPER = init();
|
||||
@Nullable
|
||||
public static final ItemType OXIDIZED_CUT_COPPER_SLAB = init();
|
||||
@ -1808,6 +1846,14 @@ public final class ItemTypes {
|
||||
@Nullable
|
||||
public static final ItemType POLISHED_GRANITE_STAIRS = init();
|
||||
@Nullable
|
||||
public static final ItemType POLISHED_TUFF = init();
|
||||
@Nullable
|
||||
public static final ItemType POLISHED_TUFF_SLAB = init();
|
||||
@Nullable
|
||||
public static final ItemType POLISHED_TUFF_STAIRS = init();
|
||||
@Nullable
|
||||
public static final ItemType POLISHED_TUFF_WALL = init();
|
||||
@Nullable
|
||||
public static final ItemType POPPED_CHORUS_FRUIT = init();
|
||||
@Nullable
|
||||
public static final ItemType POPPY = init();
|
||||
@ -2061,6 +2107,8 @@ public final class ItemTypes {
|
||||
@Nullable
|
||||
public static final ItemType SHIELD = init();
|
||||
@Nullable
|
||||
public static final ItemType SHORT_GRASS = init();
|
||||
@Nullable
|
||||
public static final ItemType SHROOMLIGHT = init();
|
||||
@Nullable
|
||||
public static final ItemType SHULKER_BOX = init();
|
||||
@ -2336,6 +2384,10 @@ public final class ItemTypes {
|
||||
@Nullable
|
||||
public static final ItemType TRAPPED_CHEST = init();
|
||||
@Nullable
|
||||
public static final ItemType TRIAL_KEY = init();
|
||||
@Nullable
|
||||
public static final ItemType TRIAL_SPAWNER = init();
|
||||
@Nullable
|
||||
public static final ItemType TRIDENT = init();
|
||||
@Nullable
|
||||
public static final ItemType TRIPWIRE_HOOK = init();
|
||||
@ -2354,6 +2406,20 @@ public final class ItemTypes {
|
||||
@Nullable
|
||||
public static final ItemType TUFF = init();
|
||||
@Nullable
|
||||
public static final ItemType TUFF_BRICK_SLAB = init();
|
||||
@Nullable
|
||||
public static final ItemType TUFF_BRICK_STAIRS = init();
|
||||
@Nullable
|
||||
public static final ItemType TUFF_BRICK_WALL = init();
|
||||
@Nullable
|
||||
public static final ItemType TUFF_BRICKS = init();
|
||||
@Nullable
|
||||
public static final ItemType TUFF_SLAB = init();
|
||||
@Nullable
|
||||
public static final ItemType TUFF_STAIRS = init();
|
||||
@Nullable
|
||||
public static final ItemType TUFF_WALL = init();
|
||||
@Nullable
|
||||
public static final ItemType TURTLE_EGG = init();
|
||||
@Nullable
|
||||
public static final ItemType TURTLE_HELMET = init();
|
||||
@ -2418,32 +2484,72 @@ public final class ItemTypes {
|
||||
@Nullable
|
||||
public static final ItemType WATER_BUCKET = init();
|
||||
@Nullable
|
||||
public static final ItemType WAXED_CHISELED_COPPER = init();
|
||||
@Nullable
|
||||
public static final ItemType WAXED_COPPER_BLOCK = init();
|
||||
@Nullable
|
||||
public static final ItemType WAXED_COPPER_BULB = init();
|
||||
@Nullable
|
||||
public static final ItemType WAXED_COPPER_DOOR = init();
|
||||
@Nullable
|
||||
public static final ItemType WAXED_COPPER_GRATE = init();
|
||||
@Nullable
|
||||
public static final ItemType WAXED_COPPER_TRAPDOOR = init();
|
||||
@Nullable
|
||||
public static final ItemType WAXED_CUT_COPPER = init();
|
||||
@Nullable
|
||||
public static final ItemType WAXED_CUT_COPPER_SLAB = init();
|
||||
@Nullable
|
||||
public static final ItemType WAXED_CUT_COPPER_STAIRS = init();
|
||||
@Nullable
|
||||
public static final ItemType WAXED_EXPOSED_CHISELED_COPPER = init();
|
||||
@Nullable
|
||||
public static final ItemType WAXED_EXPOSED_COPPER = init();
|
||||
@Nullable
|
||||
public static final ItemType WAXED_EXPOSED_COPPER_BULB = init();
|
||||
@Nullable
|
||||
public static final ItemType WAXED_EXPOSED_COPPER_DOOR = init();
|
||||
@Nullable
|
||||
public static final ItemType WAXED_EXPOSED_COPPER_GRATE = init();
|
||||
@Nullable
|
||||
public static final ItemType WAXED_EXPOSED_COPPER_TRAPDOOR = init();
|
||||
@Nullable
|
||||
public static final ItemType WAXED_EXPOSED_CUT_COPPER = init();
|
||||
@Nullable
|
||||
public static final ItemType WAXED_EXPOSED_CUT_COPPER_SLAB = init();
|
||||
@Nullable
|
||||
public static final ItemType WAXED_EXPOSED_CUT_COPPER_STAIRS = init();
|
||||
@Nullable
|
||||
public static final ItemType WAXED_OXIDIZED_CHISELED_COPPER = init();
|
||||
@Nullable
|
||||
public static final ItemType WAXED_OXIDIZED_COPPER = init();
|
||||
@Nullable
|
||||
public static final ItemType WAXED_OXIDIZED_COPPER_BULB = init();
|
||||
@Nullable
|
||||
public static final ItemType WAXED_OXIDIZED_COPPER_DOOR = init();
|
||||
@Nullable
|
||||
public static final ItemType WAXED_OXIDIZED_COPPER_GRATE = init();
|
||||
@Nullable
|
||||
public static final ItemType WAXED_OXIDIZED_COPPER_TRAPDOOR = init();
|
||||
@Nullable
|
||||
public static final ItemType WAXED_OXIDIZED_CUT_COPPER = init();
|
||||
@Nullable
|
||||
public static final ItemType WAXED_OXIDIZED_CUT_COPPER_SLAB = init();
|
||||
@Nullable
|
||||
public static final ItemType WAXED_OXIDIZED_CUT_COPPER_STAIRS = init();
|
||||
@Nullable
|
||||
public static final ItemType WAXED_WEATHERED_CHISELED_COPPER = init();
|
||||
@Nullable
|
||||
public static final ItemType WAXED_WEATHERED_COPPER = init();
|
||||
@Nullable
|
||||
public static final ItemType WAXED_WEATHERED_COPPER_BULB = init();
|
||||
@Nullable
|
||||
public static final ItemType WAXED_WEATHERED_COPPER_DOOR = init();
|
||||
@Nullable
|
||||
public static final ItemType WAXED_WEATHERED_COPPER_GRATE = init();
|
||||
@Nullable
|
||||
public static final ItemType WAXED_WEATHERED_COPPER_TRAPDOOR = init();
|
||||
@Nullable
|
||||
public static final ItemType WAXED_WEATHERED_CUT_COPPER = init();
|
||||
@Nullable
|
||||
public static final ItemType WAXED_WEATHERED_CUT_COPPER_SLAB = init();
|
||||
@ -2452,8 +2558,18 @@ public final class ItemTypes {
|
||||
@Nullable
|
||||
public static final ItemType WAYFINDER_ARMOR_TRIM_SMITHING_TEMPLATE = init();
|
||||
@Nullable
|
||||
public static final ItemType WEATHERED_CHISELED_COPPER = init();
|
||||
@Nullable
|
||||
public static final ItemType WEATHERED_COPPER = init();
|
||||
@Nullable
|
||||
public static final ItemType WEATHERED_COPPER_BULB = init();
|
||||
@Nullable
|
||||
public static final ItemType WEATHERED_COPPER_DOOR = init();
|
||||
@Nullable
|
||||
public static final ItemType WEATHERED_COPPER_GRATE = init();
|
||||
@Nullable
|
||||
public static final ItemType WEATHERED_COPPER_TRAPDOOR = init();
|
||||
@Nullable
|
||||
public static final ItemType WEATHERED_CUT_COPPER = init();
|
||||
@Nullable
|
||||
public static final ItemType WEATHERED_CUT_COPPER_SLAB = init();
|
||||
|
Reference in New Issue
Block a user