mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2025-06-12 04:23:54 +00:00
Update to 1.20 (#2276)
* Towards 1.20 * Init bukkit * Update YAML to 2.0 * Fixes for 1.20 adapters * Update obfuscated field names * Remove getHandle workaround * entityManager is obfuscated * Update paperweight * [ci-skip] Add 1.20 to modrinth task --------- Co-authored-by: Phillipp Glanz <p.glanz@madfix.me> Co-authored-by: SirYwell <hannesgreule@outlook.de>
This commit is contained in:
committed by
GitHub
parent
152d870cdb
commit
e7876c4eba
@ -12,7 +12,7 @@ applyPlatformAndCoreConfiguration()
|
||||
dependencies {
|
||||
constraints {
|
||||
implementation("org.yaml:snakeyaml") {
|
||||
version { strictly("1.33") }
|
||||
version { strictly("2.0") }
|
||||
because("Bukkit provides SnakeYaml")
|
||||
}
|
||||
}
|
||||
@ -28,7 +28,8 @@ dependencies {
|
||||
implementation("com.google.code.gson:gson")
|
||||
|
||||
// Platform expectations
|
||||
implementation("org.yaml:snakeyaml")
|
||||
// TODO update bom-newest
|
||||
implementation("org.yaml:snakeyaml:2.0")
|
||||
|
||||
// Logging
|
||||
implementation("org.apache.logging.log4j:log4j-api")
|
||||
|
@ -1,6 +1,7 @@
|
||||
package com.fastasyncworldedit.core.configuration.file;
|
||||
|
||||
import com.fastasyncworldedit.core.configuration.serialization.ConfigurationSerialization;
|
||||
import org.yaml.snakeyaml.LoaderOptions;
|
||||
import org.yaml.snakeyaml.constructor.SafeConstructor;
|
||||
import org.yaml.snakeyaml.error.YAMLException;
|
||||
import org.yaml.snakeyaml.nodes.Node;
|
||||
@ -12,6 +13,7 @@ import java.util.Map;
|
||||
public class YamlConstructor extends SafeConstructor {
|
||||
|
||||
public YamlConstructor() {
|
||||
super(new LoaderOptions());
|
||||
yamlConstructors.put(Tag.MAP, new ConstructCustomObject());
|
||||
}
|
||||
|
||||
|
@ -3,6 +3,7 @@ package com.fastasyncworldedit.core.configuration.file;
|
||||
import com.fastasyncworldedit.core.configuration.ConfigurationSection;
|
||||
import com.fastasyncworldedit.core.configuration.serialization.ConfigurationSerializable;
|
||||
import com.fastasyncworldedit.core.configuration.serialization.ConfigurationSerialization;
|
||||
import org.yaml.snakeyaml.DumperOptions;
|
||||
import org.yaml.snakeyaml.nodes.Node;
|
||||
import org.yaml.snakeyaml.representer.Representer;
|
||||
|
||||
@ -12,6 +13,7 @@ import java.util.Map;
|
||||
public class YamlRepresenter extends Representer {
|
||||
|
||||
public YamlRepresenter() {
|
||||
super(new DumperOptions());
|
||||
this.multiRepresenters.put(ConfigurationSection.class, new RepresentConfigurationSection());
|
||||
this.multiRepresenters.put(ConfigurationSerializable.class, new RepresentConfigurationSerializable());
|
||||
}
|
||||
|
@ -105,7 +105,7 @@ public class YAMLProcessor extends YAMLNode {
|
||||
// pre-1.32 snakeyaml
|
||||
}
|
||||
|
||||
yaml = new Yaml(new SafeConstructor(), representer, dumperOptions, loaderOptions);
|
||||
yaml = new Yaml(new SafeConstructor(new LoaderOptions()), representer, dumperOptions, loaderOptions);
|
||||
|
||||
this.file = file;
|
||||
}
|
||||
@ -310,6 +310,7 @@ public class YAMLProcessor extends YAMLNode {
|
||||
private static class FancyRepresenter extends Representer {
|
||||
|
||||
private FancyRepresenter() {
|
||||
super(new DumperOptions());
|
||||
this.nullRepresenter = o -> representScalar(Tag.NULL, "");
|
||||
}
|
||||
|
||||
|
@ -81,4 +81,9 @@ public final class Constants {
|
||||
*/
|
||||
public static final int DATA_VERSION_MC_1_19 = 3105;
|
||||
|
||||
/**
|
||||
* The DataVersion for Minecraft 1.20
|
||||
*/
|
||||
public static final int DATA_VERSION_MC_1_20 = 3463;
|
||||
|
||||
}
|
||||
|
@ -50,6 +50,8 @@ public final class BiomeTypes {
|
||||
@Deprecated
|
||||
public static final BiomeType BIRCH_FOREST_HILLS = get("minecraft:birch_forest_hills");
|
||||
@Nullable
|
||||
public static final BiomeType CHERRY_GROVE = get("minecraft:cherry_grove");
|
||||
@Nullable
|
||||
public static final BiomeType COLD_OCEAN = get("minecraft:cold_ocean");
|
||||
@Nullable
|
||||
public static final BiomeType CRIMSON_FOREST = get("minecraft:crimson_forest");
|
||||
@ -137,6 +139,9 @@ public final class BiomeTypes {
|
||||
@Nullable
|
||||
@Deprecated
|
||||
public static final BiomeType MODIFIED_BADLANDS_PLATEAU = get("minecraft:modified_badlands_plateau");
|
||||
@Deprecated
|
||||
@Nullable
|
||||
public static final BiomeType MODIFIED_GRAVELLY_HILLS = get("minecraft:modified_gravelly_hills");
|
||||
@Nullable
|
||||
@Deprecated
|
||||
public static final BiomeType MODIFIED_GRAVELLY_MOUNTAINS = get("minecraft:modified_gravelly_mountains");
|
||||
|
@ -28,12 +28,15 @@ package com.sk89q.worldedit.world.block;
|
||||
public final class BlockCategories {
|
||||
|
||||
public static final BlockCategory ACACIA_LOGS = get("minecraft:acacia_logs");
|
||||
public static final BlockCategory ALL_HANGING_SIGNS = get("minecraft:all_hanging_signs");
|
||||
public static final BlockCategory ALL_SIGNS = get("minecraft:all_signs");
|
||||
public static final BlockCategory ANCIENT_CITY_REPLACEABLE = get("minecraft:ancient_city_replaceable");
|
||||
public static final BlockCategory ANIMALS_SPAWNABLE_ON = get("minecraft:animals_spawnable_on");
|
||||
public static final BlockCategory ANVIL = get("minecraft:anvil");
|
||||
public static final BlockCategory AXOLOTLS_SPAWNABLE_ON = get("minecraft:axolotls_spawnable_on");
|
||||
public static final BlockCategory AZALEA_GROWS_ON = get("minecraft:azalea_grows_on");
|
||||
public static final BlockCategory AZALEA_ROOT_REPLACEABLE = get("minecraft:azalea_root_replaceable");
|
||||
public static final BlockCategory BAMBOO_BLOCKS = get("minecraft:bamboo_blocks");
|
||||
public static final BlockCategory BAMBOO_PLANTABLE_ON = get("minecraft:bamboo_plantable_on");
|
||||
public static final BlockCategory BANNERS = get("minecraft:banners");
|
||||
public static final BlockCategory BASE_STONE_NETHER = get("minecraft:base_stone_nether");
|
||||
@ -51,8 +54,11 @@ public final class BlockCategories {
|
||||
@Deprecated public static final BlockCategory CARPETS = get("minecraft:carpets");
|
||||
public static final BlockCategory CAULDRONS = get("minecraft:cauldrons");
|
||||
public static final BlockCategory CAVE_VINES = get("minecraft:cave_vines");
|
||||
public static final BlockCategory CEILING_HANGING_SIGNS = get("minecraft:ceiling_hanging_signs");
|
||||
public static final BlockCategory CHERRY_LOGS = get("minecraft:cherry_logs");
|
||||
public static final BlockCategory CLIMBABLE = get("minecraft:climbable");
|
||||
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 CONVERTABLE_TO_MUD = get("minecraft:convertable_to_mud");
|
||||
public static final BlockCategory COPPER_ORES = get("minecraft:copper_ores");
|
||||
@ -75,6 +81,8 @@ public final class BlockCategories {
|
||||
public static final BlockCategory DRAGON_TRANSPARENT = get("minecraft:dragon_transparent");
|
||||
public static final BlockCategory DRIPSTONE_REPLACEABLE_BLOCKS = get("minecraft:dripstone_replaceable_blocks");
|
||||
public static final BlockCategory EMERALD_ORES = get("minecraft:emerald_ores");
|
||||
public static final BlockCategory ENCHANTMENT_POWER_PROVIDER = get("minecraft:enchantment_power_provider");
|
||||
public static final BlockCategory ENCHANTMENT_POWER_TRANSMITTER = get("minecraft:enchantment_power_transmitter");
|
||||
public static final BlockCategory ENDERMAN_HOLDABLE = get("minecraft:enderman_holdable");
|
||||
public static final BlockCategory FALL_DAMAGE_RESETTING = get("minecraft:fall_damage_resetting");
|
||||
public static final BlockCategory FEATURES_CANNOT_REPLACE = get("minecraft:features_cannot_replace");
|
||||
@ -97,6 +105,7 @@ public final class BlockCategories {
|
||||
public static final BlockCategory INFINIBURN_NETHER = get("minecraft:infiniburn_nether");
|
||||
public static final BlockCategory INFINIBURN_OVERWORLD = get("minecraft:infiniburn_overworld");
|
||||
public static final BlockCategory INSIDE_STEP_SOUND_BLOCKS = get("minecraft:inside_step_sound_blocks");
|
||||
public static final BlockCategory INVALID_SPAWN_INSIDE = get("minecraft:invalid_spawn_inside");
|
||||
public static final BlockCategory IRON_ORES = get("minecraft:iron_ores");
|
||||
public static final BlockCategory JUNGLE_LOGS = get("minecraft:jungle_logs");
|
||||
public static final BlockCategory LAPIS_ORES = get("minecraft:lapis_ores");
|
||||
@ -106,6 +115,7 @@ public final class BlockCategories {
|
||||
public static final BlockCategory LOGS = get("minecraft:logs");
|
||||
public static final BlockCategory LOGS_THAT_BURN = get("minecraft:logs_that_burn");
|
||||
public static final BlockCategory LUSH_GROUND_REPLACEABLE = get("minecraft:lush_ground_replaceable");
|
||||
public static final BlockCategory MAINTAINS_FARMLAND = get("minecraft:maintains_farmland");
|
||||
public static final BlockCategory MANGROVE_LOGS = get("minecraft:mangrove_logs");
|
||||
public static final BlockCategory MANGROVE_LOGS_CAN_GROW_THROUGH = get("minecraft:mangrove_logs_can_grow_through");
|
||||
public static final BlockCategory MANGROVE_ROOTS_CAN_GROW_THROUGH = get("minecraft:mangrove_roots_can_grow_through");
|
||||
@ -120,7 +130,6 @@ public final class BlockCategories {
|
||||
public static final BlockCategory NEEDS_IRON_TOOL = get("minecraft:needs_iron_tool");
|
||||
public static final BlockCategory NEEDS_STONE_TOOL = get("minecraft:needs_stone_tool");
|
||||
public static final BlockCategory NETHER_CARVER_REPLACEABLES = get("minecraft:nether_carver_replaceables");
|
||||
public static final BlockCategory NON_FLAMMABLE_WOOD = get("minecraft:non_flammable_wood");
|
||||
public static final BlockCategory NYLIUM = get("minecraft:nylium");
|
||||
public static final BlockCategory OAK_LOGS = get("minecraft:oak_logs");
|
||||
public static final BlockCategory OCCLUDES_VIBRATION_SIGNALS = get("minecraft:occludes_vibration_signals");
|
||||
@ -136,7 +145,9 @@ public final class BlockCategories {
|
||||
public static final BlockCategory RABBITS_SPAWNABLE_ON = get("minecraft:rabbits_spawnable_on");
|
||||
public static final BlockCategory RAILS = get("minecraft:rails");
|
||||
public static final BlockCategory REDSTONE_ORES = get("minecraft:redstone_ores");
|
||||
public static final BlockCategory REPLACEABLE_PLANTS = get("minecraft:replaceable_plants");
|
||||
public static final BlockCategory REPLACEABLE = get("minecraft:replaceable");
|
||||
public static final BlockCategory REPLACEABLE_BY_TREES = get("minecraft:replaceable_by_trees");
|
||||
@Deprecated public static final BlockCategory REPLACEABLE_PLANTS = get("minecraft:replaceable_plants");
|
||||
public static final BlockCategory SAND = get("minecraft:sand");
|
||||
public static final BlockCategory SAPLINGS = get("minecraft:saplings");
|
||||
public static final BlockCategory SCULK_REPLACEABLE = get("minecraft:sculk_replaceable");
|
||||
@ -146,7 +157,10 @@ public final class BlockCategories {
|
||||
public static final BlockCategory SLABS = get("minecraft:slabs");
|
||||
public static final BlockCategory SMALL_DRIPLEAF_PLACEABLE = get("minecraft:small_dripleaf_placeable");
|
||||
public static final BlockCategory SMALL_FLOWERS = get("minecraft:small_flowers");
|
||||
public static final BlockCategory SMELTS_TO_GLASS = get("minecraft:smelts_to_glass");
|
||||
public static final BlockCategory SNAPS_GOAT_HORN = get("minecraft:snaps_goat_horn");
|
||||
public static final BlockCategory SNIFFER_DIGGABLE_BLOCK = get("minecraft:sniffer_diggable_block");
|
||||
public static final BlockCategory SNIFFER_EGG_HATCH_BOOST = get("minecraft:sniffer_egg_hatch_boost");
|
||||
public static final BlockCategory SNOW = get("minecraft:snow");
|
||||
public static final BlockCategory SNOW_LAYER_CAN_SURVIVE_ON = get("minecraft:snow_layer_can_survive_on");
|
||||
public static final BlockCategory SNOW_LAYER_CANNOT_SURVIVE_ON = get("minecraft:snow_layer_cannot_survive_on");
|
||||
@ -156,16 +170,21 @@ public final class BlockCategories {
|
||||
public static final BlockCategory STAIRS = get("minecraft:stairs");
|
||||
public static final BlockCategory STANDING_SIGNS = get("minecraft:standing_signs");
|
||||
public static final BlockCategory STONE_BRICKS = get("minecraft:stone_bricks");
|
||||
public static final BlockCategory STONE_BUTTONS = get("minecraft:stone_buttons");
|
||||
public static final BlockCategory STONE_ORE_REPLACEABLES = get("minecraft:stone_ore_replaceables");
|
||||
public static final BlockCategory STONE_PRESSURE_PLATES = get("minecraft:stone_pressure_plates");
|
||||
public static final BlockCategory STRIDER_WARM_BLOCKS = get("minecraft:strider_warm_blocks");
|
||||
public static final BlockCategory SWORD_EFFICIENT = get("minecraft:sword_efficient");
|
||||
public static final BlockCategory TALL_FLOWERS = get("minecraft:tall_flowers");
|
||||
public static final BlockCategory TERRACOTTA = get("minecraft:terracotta");
|
||||
public static final BlockCategory TRAIL_RUINS_REPLACEABLE = get("minecraft:trail_ruins_replaceable");
|
||||
public static final BlockCategory TRAPDOORS = get("minecraft:trapdoors");
|
||||
public static final BlockCategory UNDERWATER_BONEMEALS = get("minecraft:underwater_bonemeals");
|
||||
public static final BlockCategory UNSTABLE_BOTTOM_CENTER = get("minecraft:unstable_bottom_center");
|
||||
public static final BlockCategory VALID_SPAWN = get("minecraft:valid_spawn");
|
||||
public static final BlockCategory VIBRATION_RESONATORS = get("minecraft:vibration_resonators");
|
||||
public static final BlockCategory WALL_CORALS = get("minecraft:wall_corals");
|
||||
public static final BlockCategory WALL_HANGING_SIGNS = get("minecraft:wall_hanging_signs");
|
||||
public static final BlockCategory WALL_POST_OVERRIDE = get("minecraft:wall_post_override");
|
||||
public static final BlockCategory WALL_SIGNS = get("minecraft:wall_signs");
|
||||
public static final BlockCategory WALLS = get("minecraft:walls");
|
||||
|
@ -55,6 +55,8 @@ public final class BlockTypes {
|
||||
@Nullable
|
||||
public static final BlockType ACACIA_FENCE_GATE = init();
|
||||
@Nullable
|
||||
public static final BlockType ACACIA_HANGING_SIGN = init();
|
||||
@Nullable
|
||||
public static final BlockType ACACIA_LEAVES = init();
|
||||
@Nullable
|
||||
public static final BlockType ACACIA_LOG = init();
|
||||
@ -73,6 +75,8 @@ public final class BlockTypes {
|
||||
@Nullable
|
||||
public static final BlockType ACACIA_TRAPDOOR = init();
|
||||
@Nullable
|
||||
public static final BlockType ACACIA_WALL_HANGING_SIGN = init();
|
||||
@Nullable
|
||||
public static final BlockType ACACIA_WALL_SIGN = init();
|
||||
@Nullable
|
||||
public static final BlockType ACACIA_WOOD = init();
|
||||
@ -111,8 +115,42 @@ public final class BlockTypes {
|
||||
@Nullable
|
||||
public static final BlockType BAMBOO = init();
|
||||
@Nullable
|
||||
public static final BlockType BAMBOO_BLOCK = init();
|
||||
@Nullable
|
||||
public static final BlockType BAMBOO_BUTTON = init();
|
||||
@Nullable
|
||||
public static final BlockType BAMBOO_DOOR = init();
|
||||
@Nullable
|
||||
public static final BlockType BAMBOO_FENCE = init();
|
||||
@Nullable
|
||||
public static final BlockType BAMBOO_FENCE_GATE = init();
|
||||
@Nullable
|
||||
public static final BlockType BAMBOO_HANGING_SIGN = init();
|
||||
@Nullable
|
||||
public static final BlockType BAMBOO_MOSAIC = init();
|
||||
@Nullable
|
||||
public static final BlockType BAMBOO_MOSAIC_SLAB = init();
|
||||
@Nullable
|
||||
public static final BlockType BAMBOO_MOSAIC_STAIRS = init();
|
||||
@Nullable
|
||||
public static final BlockType BAMBOO_PLANKS = init();
|
||||
@Nullable
|
||||
public static final BlockType BAMBOO_PRESSURE_PLATE = init();
|
||||
@Nullable
|
||||
public static final BlockType BAMBOO_SAPLING = init();
|
||||
@Nullable
|
||||
public static final BlockType BAMBOO_SIGN = init();
|
||||
@Nullable
|
||||
public static final BlockType BAMBOO_SLAB = init();
|
||||
@Nullable
|
||||
public static final BlockType BAMBOO_STAIRS = init();
|
||||
@Nullable
|
||||
public static final BlockType BAMBOO_TRAPDOOR = init();
|
||||
@Nullable
|
||||
public static final BlockType BAMBOO_WALL_HANGING_SIGN = init();
|
||||
@Nullable
|
||||
public static final BlockType BAMBOO_WALL_SIGN = init();
|
||||
@Nullable
|
||||
public static final BlockType BARREL = init();
|
||||
@Nullable
|
||||
public static final BlockType BARRIER = init();
|
||||
@ -143,6 +181,8 @@ public final class BlockTypes {
|
||||
@Nullable
|
||||
public static final BlockType BIRCH_FENCE_GATE = init();
|
||||
@Nullable
|
||||
public static final BlockType BIRCH_HANGING_SIGN = init();
|
||||
@Nullable
|
||||
public static final BlockType BIRCH_LEAVES = init();
|
||||
@Nullable
|
||||
public static final BlockType BIRCH_LOG = init();
|
||||
@ -161,6 +201,8 @@ public final class BlockTypes {
|
||||
@Nullable
|
||||
public static final BlockType BIRCH_TRAPDOOR = init();
|
||||
@Nullable
|
||||
public static final BlockType BIRCH_WALL_HANGING_SIGN = init();
|
||||
@Nullable
|
||||
public static final BlockType BIRCH_WALL_SIGN = init();
|
||||
@Nullable
|
||||
public static final BlockType BIRCH_WOOD = init();
|
||||
@ -307,6 +349,8 @@ public final class BlockTypes {
|
||||
@Nullable
|
||||
public static final BlockType CALCITE = init();
|
||||
@Nullable
|
||||
public static final BlockType CALIBRATED_SCULK_SENSOR = init();
|
||||
@Nullable
|
||||
public static final BlockType CAMPFIRE = init();
|
||||
@Nullable
|
||||
public static final BlockType CANDLE = init();
|
||||
@ -331,10 +375,46 @@ public final class BlockTypes {
|
||||
@Nullable
|
||||
public static final BlockType CHAIN_COMMAND_BLOCK = init();
|
||||
@Nullable
|
||||
public static final BlockType CHERRY_BUTTON = init();
|
||||
@Nullable
|
||||
public static final BlockType CHERRY_DOOR = init();
|
||||
@Nullable
|
||||
public static final BlockType CHERRY_FENCE = init();
|
||||
@Nullable
|
||||
public static final BlockType CHERRY_FENCE_GATE = init();
|
||||
@Nullable
|
||||
public static final BlockType CHERRY_HANGING_SIGN = init();
|
||||
@Nullable
|
||||
public static final BlockType CHERRY_LEAVES = init();
|
||||
@Nullable
|
||||
public static final BlockType CHERRY_LOG = init();
|
||||
@Nullable
|
||||
public static final BlockType CHERRY_PLANKS = init();
|
||||
@Nullable
|
||||
public static final BlockType CHERRY_PRESSURE_PLATE = init();
|
||||
@Nullable
|
||||
public static final BlockType CHERRY_SAPLING = init();
|
||||
@Nullable
|
||||
public static final BlockType CHERRY_SIGN = init();
|
||||
@Nullable
|
||||
public static final BlockType CHERRY_SLAB = init();
|
||||
@Nullable
|
||||
public static final BlockType CHERRY_STAIRS = init();
|
||||
@Nullable
|
||||
public static final BlockType CHERRY_TRAPDOOR = init();
|
||||
@Nullable
|
||||
public static final BlockType CHERRY_WALL_HANGING_SIGN = init();
|
||||
@Nullable
|
||||
public static final BlockType CHERRY_WALL_SIGN = init();
|
||||
@Nullable
|
||||
public static final BlockType CHERRY_WOOD = init();
|
||||
@Nullable
|
||||
public static final BlockType CHEST = init();
|
||||
@Nullable
|
||||
public static final BlockType CHIPPED_ANVIL = init();
|
||||
@Nullable
|
||||
public static final BlockType CHISELED_BOOKSHELF = init();
|
||||
@Nullable
|
||||
public static final BlockType CHISELED_DEEPSLATE = init();
|
||||
@Nullable
|
||||
public static final BlockType CHISELED_NETHER_BRICKS = init();
|
||||
@ -419,6 +499,8 @@ public final class BlockTypes {
|
||||
@Nullable
|
||||
public static final BlockType CRIMSON_FUNGUS = init();
|
||||
@Nullable
|
||||
public static final BlockType CRIMSON_HANGING_SIGN = init();
|
||||
@Nullable
|
||||
public static final BlockType CRIMSON_HYPHAE = init();
|
||||
@Nullable
|
||||
public static final BlockType CRIMSON_NYLIUM = init();
|
||||
@ -439,6 +521,8 @@ public final class BlockTypes {
|
||||
@Nullable
|
||||
public static final BlockType CRIMSON_TRAPDOOR = init();
|
||||
@Nullable
|
||||
public static final BlockType CRIMSON_WALL_HANGING_SIGN = init();
|
||||
@Nullable
|
||||
public static final BlockType CRIMSON_WALL_SIGN = init();
|
||||
@Nullable
|
||||
public static final BlockType CRYING_OBSIDIAN = init();
|
||||
@ -497,6 +581,8 @@ public final class BlockTypes {
|
||||
@Nullable
|
||||
public static final BlockType DARK_OAK_FENCE_GATE = init();
|
||||
@Nullable
|
||||
public static final BlockType DARK_OAK_HANGING_SIGN = init();
|
||||
@Nullable
|
||||
public static final BlockType DARK_OAK_LEAVES = init();
|
||||
@Nullable
|
||||
public static final BlockType DARK_OAK_LOG = init();
|
||||
@ -515,6 +601,8 @@ public final class BlockTypes {
|
||||
@Nullable
|
||||
public static final BlockType DARK_OAK_TRAPDOOR = init();
|
||||
@Nullable
|
||||
public static final BlockType DARK_OAK_WALL_HANGING_SIGN = init();
|
||||
@Nullable
|
||||
public static final BlockType DARK_OAK_WALL_SIGN = init();
|
||||
@Nullable
|
||||
public static final BlockType DARK_OAK_WOOD = init();
|
||||
@ -569,6 +657,8 @@ public final class BlockTypes {
|
||||
@Nullable
|
||||
public static final BlockType DEAD_TUBE_CORAL_WALL_FAN = init();
|
||||
@Nullable
|
||||
public static final BlockType DECORATED_POT = init();
|
||||
@Nullable
|
||||
public static final BlockType DEEPSLATE = init();
|
||||
@Nullable
|
||||
public static final BlockType DEEPSLATE_BRICKS = init();
|
||||
@ -843,6 +933,8 @@ public final class BlockTypes {
|
||||
@Nullable
|
||||
public static final BlockType JUNGLE_FENCE_GATE = init();
|
||||
@Nullable
|
||||
public static final BlockType JUNGLE_HANGING_SIGN = init();
|
||||
@Nullable
|
||||
public static final BlockType JUNGLE_LEAVES = init();
|
||||
@Nullable
|
||||
public static final BlockType JUNGLE_LOG = init();
|
||||
@ -861,6 +953,8 @@ public final class BlockTypes {
|
||||
@Nullable
|
||||
public static final BlockType JUNGLE_TRAPDOOR = init();
|
||||
@Nullable
|
||||
public static final BlockType JUNGLE_WALL_HANGING_SIGN = init();
|
||||
@Nullable
|
||||
public static final BlockType JUNGLE_WALL_SIGN = init();
|
||||
@Nullable
|
||||
public static final BlockType JUNGLE_WOOD = init();
|
||||
@ -1027,6 +1121,8 @@ public final class BlockTypes {
|
||||
@Nullable
|
||||
public static final BlockType MANGROVE_FENCE_GATE = init();
|
||||
@Nullable
|
||||
public static final BlockType MANGROVE_HANGING_SIGN = init();
|
||||
@Nullable
|
||||
public static final BlockType MANGROVE_LEAVES = init();
|
||||
@Nullable
|
||||
public static final BlockType MANGROVE_LOG = init();
|
||||
@ -1047,6 +1143,8 @@ public final class BlockTypes {
|
||||
@Nullable
|
||||
public static final BlockType MANGROVE_TRAPDOOR = init();
|
||||
@Nullable
|
||||
public static final BlockType MANGROVE_WALL_HANGING_SIGN = init();
|
||||
@Nullable
|
||||
public static final BlockType MANGROVE_WALL_SIGN = init();
|
||||
@Nullable
|
||||
public static final BlockType MANGROVE_WOOD = init();
|
||||
@ -1131,6 +1229,8 @@ public final class BlockTypes {
|
||||
@Nullable
|
||||
public static final BlockType OAK_FENCE_GATE = init();
|
||||
@Nullable
|
||||
public static final BlockType OAK_HANGING_SIGN = init();
|
||||
@Nullable
|
||||
public static final BlockType OAK_LEAVES = init();
|
||||
@Nullable
|
||||
public static final BlockType OAK_LOG = init();
|
||||
@ -1149,6 +1249,8 @@ public final class BlockTypes {
|
||||
@Nullable
|
||||
public static final BlockType OAK_TRAPDOOR = init();
|
||||
@Nullable
|
||||
public static final BlockType OAK_WALL_HANGING_SIGN = init();
|
||||
@Nullable
|
||||
public static final BlockType OAK_WALL_SIGN = init();
|
||||
@Nullable
|
||||
public static final BlockType OAK_WOOD = init();
|
||||
@ -1209,6 +1311,10 @@ public final class BlockTypes {
|
||||
@Nullable
|
||||
public static final BlockType PETRIFIED_OAK_SLAB = init();
|
||||
@Nullable
|
||||
public static final BlockType PIGLIN_HEAD = init();
|
||||
@Nullable
|
||||
public static final BlockType PIGLIN_WALL_HEAD = init();
|
||||
@Nullable
|
||||
public static final BlockType PINK_BANNER = init();
|
||||
@Nullable
|
||||
public static final BlockType PINK_BED = init();
|
||||
@ -1225,6 +1331,8 @@ public final class BlockTypes {
|
||||
@Nullable
|
||||
public static final BlockType PINK_GLAZED_TERRACOTTA = init();
|
||||
@Nullable
|
||||
public static final BlockType PINK_PETALS = init();
|
||||
@Nullable
|
||||
public static final BlockType PINK_SHULKER_BOX = init();
|
||||
@Nullable
|
||||
public static final BlockType PINK_STAINED_GLASS = init();
|
||||
@ -1243,6 +1351,10 @@ public final class BlockTypes {
|
||||
@Nullable
|
||||
public static final BlockType PISTON_HEAD = init();
|
||||
@Nullable
|
||||
public static final BlockType PITCHER_CROP = init();
|
||||
@Nullable
|
||||
public static final BlockType PITCHER_PLANT = init();
|
||||
@Nullable
|
||||
public static final BlockType PLAYER_HEAD = init();
|
||||
@Nullable
|
||||
public static final BlockType PLAYER_WALL_HEAD = init();
|
||||
@ -1324,6 +1436,8 @@ public final class BlockTypes {
|
||||
@Nullable
|
||||
public static final BlockType POTTED_CACTUS = init();
|
||||
@Nullable
|
||||
public static final BlockType POTTED_CHERRY_SAPLING = init();
|
||||
@Nullable
|
||||
public static final BlockType POTTED_CORNFLOWER = init();
|
||||
@Nullable
|
||||
public static final BlockType POTTED_CRIMSON_FUNGUS = init();
|
||||
@ -1365,6 +1479,8 @@ public final class BlockTypes {
|
||||
@Nullable
|
||||
public static final BlockType POTTED_SPRUCE_SAPLING = init();
|
||||
@Nullable
|
||||
public static final BlockType POTTED_TORCHFLOWER = init();
|
||||
@Nullable
|
||||
public static final BlockType POTTED_WARPED_FUNGUS = init();
|
||||
@Nullable
|
||||
public static final BlockType POTTED_WARPED_ROOTS = init();
|
||||
@ -1600,6 +1716,8 @@ public final class BlockTypes {
|
||||
@Nullable
|
||||
public static final BlockType SMOOTH_STONE_SLAB = init();
|
||||
@Nullable
|
||||
public static final BlockType SNIFFER_EGG = init();
|
||||
@Nullable
|
||||
public static final BlockType SNOW = init();
|
||||
@Nullable
|
||||
public static final BlockType SNOW_BLOCK = init();
|
||||
@ -1632,6 +1750,8 @@ public final class BlockTypes {
|
||||
@Nullable
|
||||
public static final BlockType SPRUCE_FENCE_GATE = init();
|
||||
@Nullable
|
||||
public static final BlockType SPRUCE_HANGING_SIGN = init();
|
||||
@Nullable
|
||||
public static final BlockType SPRUCE_LEAVES = init();
|
||||
@Nullable
|
||||
public static final BlockType SPRUCE_LOG = init();
|
||||
@ -1650,6 +1770,8 @@ public final class BlockTypes {
|
||||
@Nullable
|
||||
public static final BlockType SPRUCE_TRAPDOOR = init();
|
||||
@Nullable
|
||||
public static final BlockType SPRUCE_WALL_HANGING_SIGN = init();
|
||||
@Nullable
|
||||
public static final BlockType SPRUCE_WALL_SIGN = init();
|
||||
@Nullable
|
||||
public static final BlockType SPRUCE_WOOD = init();
|
||||
@ -1680,10 +1802,16 @@ public final class BlockTypes {
|
||||
@Nullable
|
||||
public static final BlockType STRIPPED_ACACIA_WOOD = init();
|
||||
@Nullable
|
||||
public static final BlockType STRIPPED_BAMBOO_BLOCK = init();
|
||||
@Nullable
|
||||
public static final BlockType STRIPPED_BIRCH_LOG = init();
|
||||
@Nullable
|
||||
public static final BlockType STRIPPED_BIRCH_WOOD = init();
|
||||
@Nullable
|
||||
public static final BlockType STRIPPED_CHERRY_LOG = init();
|
||||
@Nullable
|
||||
public static final BlockType STRIPPED_CHERRY_WOOD = init();
|
||||
@Nullable
|
||||
public static final BlockType STRIPPED_CRIMSON_HYPHAE = init();
|
||||
@Nullable
|
||||
public static final BlockType STRIPPED_CRIMSON_STEM = init();
|
||||
@ -1720,6 +1848,10 @@ public final class BlockTypes {
|
||||
@Nullable
|
||||
public static final BlockType SUNFLOWER = init();
|
||||
@Nullable
|
||||
public static final BlockType SUSPICIOUS_GRAVEL = init();
|
||||
@Nullable
|
||||
public static final BlockType SUSPICIOUS_SAND = init();
|
||||
@Nullable
|
||||
public static final BlockType SWEET_BERRY_BUSH = init();
|
||||
@Nullable
|
||||
public static final BlockType TALL_GRASS = init();
|
||||
@ -1736,6 +1868,10 @@ public final class BlockTypes {
|
||||
@Nullable
|
||||
public static final BlockType TORCH = init();
|
||||
@Nullable
|
||||
public static final BlockType TORCHFLOWER = init();
|
||||
@Nullable
|
||||
public static final BlockType TORCHFLOWER_CROP = init();
|
||||
@Nullable
|
||||
public static final BlockType TRAPPED_CHEST = init();
|
||||
@Nullable
|
||||
public static final BlockType TRIPWIRE = init();
|
||||
@ -1779,6 +1915,8 @@ public final class BlockTypes {
|
||||
@Nullable
|
||||
public static final BlockType WARPED_FUNGUS = init();
|
||||
@Nullable
|
||||
public static final BlockType WARPED_HANGING_SIGN = init();
|
||||
@Nullable
|
||||
public static final BlockType WARPED_HYPHAE = init();
|
||||
@Nullable
|
||||
public static final BlockType WARPED_NYLIUM = init();
|
||||
@ -1799,6 +1937,8 @@ public final class BlockTypes {
|
||||
@Nullable
|
||||
public static final BlockType WARPED_TRAPDOOR = init();
|
||||
@Nullable
|
||||
public static final BlockType WARPED_WALL_HANGING_SIGN = init();
|
||||
@Nullable
|
||||
public static final BlockType WARPED_WALL_SIGN = init();
|
||||
@Nullable
|
||||
public static final BlockType WARPED_WART_BLOCK = init();
|
||||
@ -1926,6 +2066,8 @@ public final class BlockTypes {
|
||||
private static Field[] fieldsTmp;
|
||||
private static int initIndex = 0;
|
||||
|
||||
// Init each field
|
||||
// The order is important
|
||||
public static BlockType init() {
|
||||
if (fieldsTmp == null) {
|
||||
fieldsTmp = BlockTypes.class.getDeclaredFields();
|
||||
@ -1935,6 +2077,7 @@ public final class BlockTypes {
|
||||
return BlockType.REGISTRY.get(name);
|
||||
}
|
||||
|
||||
// Clears memory after initialization
|
||||
static {
|
||||
fieldsTmp = null;
|
||||
}
|
||||
|
@ -47,8 +47,12 @@ public final class EntityTypes {
|
||||
@Nullable
|
||||
public static final EntityType BLAZE = get("minecraft:blaze");
|
||||
@Nullable
|
||||
public static final EntityType BLOCK_DISPLAY = get("minecraft:block_display");
|
||||
@Nullable
|
||||
public static final EntityType BOAT = get("minecraft:boat");
|
||||
@Nullable
|
||||
public static final EntityType CAMEL = get("minecraft:camel");
|
||||
@Nullable
|
||||
public static final EntityType CAT = get("minecraft:cat");
|
||||
@Nullable
|
||||
public static final EntityType CAVE_SPIDER = get("minecraft:cave_spider");
|
||||
@ -135,10 +139,14 @@ public final class EntityTypes {
|
||||
@Nullable
|
||||
public static final EntityType ILLUSIONER = get("minecraft:illusioner");
|
||||
@Nullable
|
||||
public static final EntityType INTERACTION = get("minecraft:interaction");
|
||||
@Nullable
|
||||
public static final EntityType IRON_GOLEM = get("minecraft:iron_golem");
|
||||
@Nullable
|
||||
public static final EntityType ITEM = get("minecraft:item");
|
||||
@Nullable
|
||||
public static final EntityType ITEM_DISPLAY = get("minecraft:item_display");
|
||||
@Nullable
|
||||
public static final EntityType ITEM_FRAME = get("minecraft:item_frame");
|
||||
@Nullable
|
||||
public static final EntityType LEASH_KNOT = get("minecraft:leash_knot");
|
||||
@ -207,6 +215,8 @@ public final class EntityTypes {
|
||||
@Nullable
|
||||
public static final EntityType SMALL_FIREBALL = get("minecraft:small_fireball");
|
||||
@Nullable
|
||||
public static final EntityType SNIFFER = get("minecraft:sniffer");
|
||||
@Nullable
|
||||
public static final EntityType SNOW_GOLEM = get("minecraft:snow_golem");
|
||||
@Nullable
|
||||
public static final EntityType SNOWBALL = get("minecraft:snowball");
|
||||
@ -225,6 +235,8 @@ public final class EntityTypes {
|
||||
@Nullable
|
||||
public static final EntityType TADPOLE = get("minecraft:tadpole");
|
||||
@Nullable
|
||||
public static final EntityType TEXT_DISPLAY = get("minecraft:text_display");
|
||||
@Nullable
|
||||
public static final EntityType TNT = get("minecraft:tnt");
|
||||
@Nullable
|
||||
public static final EntityType TNT_MINECART = get("minecraft:tnt_minecart");
|
||||
|
@ -30,15 +30,20 @@ public final class ItemCategories {
|
||||
public static final ItemCategory ACACIA_LOGS = get("minecraft:acacia_logs");
|
||||
public static final ItemCategory ANVIL = get("minecraft:anvil");
|
||||
public static final ItemCategory ARROWS = get("minecraft:arrows");
|
||||
public static final ItemCategory AXES = get("minecraft:axes");
|
||||
public static final ItemCategory AXOLOTL_TEMPT_ITEMS = get("minecraft:axolotl_tempt_items");
|
||||
public static final ItemCategory BAMBOO_BLOCKS = get("minecraft:bamboo_blocks");
|
||||
public static final ItemCategory BANNERS = get("minecraft:banners");
|
||||
public static final ItemCategory BEACON_PAYMENT_ITEMS = get("minecraft:beacon_payment_items");
|
||||
public static final ItemCategory BEDS = get("minecraft:beds");
|
||||
public static final ItemCategory BIRCH_LOGS = get("minecraft:birch_logs");
|
||||
public static final ItemCategory BOATS = get("minecraft:boats");
|
||||
public static final ItemCategory BOOKSHELF_BOOKS = get("minecraft:bookshelf_books");
|
||||
public static final ItemCategory BREAKS_DECORATED_POTS = get("minecraft:breaks_decorated_pots");
|
||||
public static final ItemCategory BUTTONS = get("minecraft:buttons");
|
||||
public static final ItemCategory CANDLES = get("minecraft:candles");
|
||||
@Deprecated public static final ItemCategory CARPETS = get("minecraft:carpets");
|
||||
public static final ItemCategory CHERRY_LOGS = get("minecraft:cherry_logs");
|
||||
public static final ItemCategory CHEST_BOATS = get("minecraft:chest_boats");
|
||||
public static final ItemCategory CLUSTER_MAX_HARVESTABLES = get("minecraft:cluster_max_harvestables");
|
||||
public static final ItemCategory COAL_ORES = get("minecraft:coal_ores");
|
||||
@ -47,13 +52,17 @@ public final class ItemCategories {
|
||||
public static final ItemCategory COMPLETES_FIND_TREE_TUTORIAL = get("minecraft:completes_find_tree_tutorial");
|
||||
public static final ItemCategory COPPER_ORES = get("minecraft:copper_ores");
|
||||
public static final ItemCategory CREEPER_DROP_MUSIC_DISCS = get("minecraft:creeper_drop_music_discs");
|
||||
public static final ItemCategory CREEPER_IGNITERS = get("minecraft:creeper_igniters");
|
||||
public static final ItemCategory CRIMSON_STEMS = get("minecraft:crimson_stems");
|
||||
public static final ItemCategory DAMPENS_VIBRATIONS = get("minecraft:dampens_vibrations");
|
||||
public static final ItemCategory DARK_OAK_LOGS = get("minecraft:dark_oak_logs");
|
||||
public static final ItemCategory DECORATED_POT_INGREDIENTS = get("minecraft:decorated_pot_ingredients");
|
||||
public static final ItemCategory DECORATED_POT_SHERDS = get("minecraft:decorated_pot_sherds");
|
||||
public static final ItemCategory DIAMOND_ORES = get("minecraft:diamond_ores");
|
||||
public static final ItemCategory DIRT = get("minecraft:dirt");
|
||||
public static final ItemCategory DOORS = get("minecraft:doors");
|
||||
public static final ItemCategory EMERALD_ORES = get("minecraft:emerald_ores");
|
||||
public static final ItemCategory FENCE_GATES = get("minecraft:fence_gates");
|
||||
public static final ItemCategory FENCES = get("minecraft:fences");
|
||||
public static final ItemCategory FISHES = get("minecraft:fishes");
|
||||
public static final ItemCategory FLOWERS = get("minecraft:flowers");
|
||||
@ -62,6 +71,8 @@ public final class ItemCategories {
|
||||
@Deprecated
|
||||
public static final ItemCategory FURNACE_MATERIALS = get("minecraft:furnace_materials");
|
||||
public static final ItemCategory GOLD_ORES = get("minecraft:gold_ores");
|
||||
public static final ItemCategory HANGING_SIGNS = get("minecraft:hanging_signs");
|
||||
public static final ItemCategory HOES = get("minecraft:hoes");
|
||||
public static final ItemCategory IGNORED_BY_PIGLIN_BABIES = get("minecraft:ignored_by_piglin_babies");
|
||||
public static final ItemCategory IRON_ORES = get("minecraft:iron_ores");
|
||||
public static final ItemCategory JUNGLE_LOGS = get("minecraft:jungle_logs");
|
||||
@ -73,9 +84,11 @@ public final class ItemCategories {
|
||||
public static final ItemCategory MANGROVE_LOGS = get("minecraft:mangrove_logs");
|
||||
public static final ItemCategory MUSIC_DISCS = get("minecraft:music_discs");
|
||||
public static final ItemCategory NON_FLAMMABLE_WOOD = get("minecraft:non_flammable_wood");
|
||||
public static final ItemCategory NOTEBLOCK_TOP_INSTRUMENTS = get("minecraft:noteblock_top_instruments");
|
||||
public static final ItemCategory OAK_LOGS = get("minecraft:oak_logs");
|
||||
@Deprecated public static final ItemCategory OCCLUDES_VIBRATION_SIGNALS = get("minecraft:occludes_vibration_signals");
|
||||
public static final ItemCategory OVERWORLD_NATURAL_LOGS = get("minecraft:overworld_natural_logs");
|
||||
@Deprecated public static final ItemCategory OVERWORLD_NATURAL_LOGS = get("minecraft:overworld_natural_logs");
|
||||
public static final ItemCategory PICKAXES = get("minecraft:pickaxes");
|
||||
public static final ItemCategory PIGLIN_FOOD = get("minecraft:piglin_food");
|
||||
public static final ItemCategory PIGLIN_LOVED = get("minecraft:piglin_loved");
|
||||
public static final ItemCategory PIGLIN_REPELLENTS = get("minecraft:piglin_repellents");
|
||||
@ -84,18 +97,28 @@ public final class ItemCategories {
|
||||
public static final ItemCategory REDSTONE_ORES = get("minecraft:redstone_ores");
|
||||
public static final ItemCategory SAND = get("minecraft:sand");
|
||||
public static final ItemCategory SAPLINGS = get("minecraft:saplings");
|
||||
public static final ItemCategory SHOVELS = get("minecraft:shovels");
|
||||
public static final ItemCategory SIGNS = get("minecraft:signs");
|
||||
public static final ItemCategory SLABS = get("minecraft:slabs");
|
||||
public static final ItemCategory SMALL_FLOWERS = get("minecraft:small_flowers");
|
||||
public static final ItemCategory SMELTS_TO_GLASS = get("minecraft:smelts_to_glass");
|
||||
public static final ItemCategory SNIFFER_FOOD = get("minecraft:sniffer_food");
|
||||
public static final ItemCategory SOUL_FIRE_BASE_BLOCKS = get("minecraft:soul_fire_base_blocks");
|
||||
public static final ItemCategory SPRUCE_LOGS = get("minecraft:spruce_logs");
|
||||
public static final ItemCategory STAIRS = get("minecraft:stairs");
|
||||
public static final ItemCategory STONE_BRICKS = get("minecraft:stone_bricks");
|
||||
public static final ItemCategory STONE_BUTTONS = get("minecraft:stone_buttons");
|
||||
public static final ItemCategory STONE_CRAFTING_MATERIALS = get("minecraft:stone_crafting_materials");
|
||||
public static final ItemCategory STONE_TOOL_MATERIALS = get("minecraft:stone_tool_materials");
|
||||
public static final ItemCategory SWORDS = get("minecraft:swords");
|
||||
public static final ItemCategory TALL_FLOWERS = get("minecraft:tall_flowers");
|
||||
public static final ItemCategory TERRACOTTA = get("minecraft:terracotta");
|
||||
public static final ItemCategory TOOLS = get("minecraft:tools");
|
||||
public static final ItemCategory TRAPDOORS = get("minecraft:trapdoors");
|
||||
public static final ItemCategory TRIM_MATERIALS = get("minecraft:trim_materials");
|
||||
public static final ItemCategory TRIM_TEMPLATES = get("minecraft:trim_templates");
|
||||
public static final ItemCategory TRIMMABLE_ARMOR = get("minecraft:trimmable_armor");
|
||||
public static final ItemCategory VILLAGER_PLANTABLE_SEEDS = get("minecraft:villager_plantable_seeds");
|
||||
public static final ItemCategory WALLS = get("minecraft:walls");
|
||||
public static final ItemCategory WARPED_STEMS = get("minecraft:warped_stems");
|
||||
public static final ItemCategory WART_BLOCKS = get("minecraft:wart_blocks");
|
||||
|
@ -49,6 +49,8 @@ public final class ItemTypes {
|
||||
@Nullable
|
||||
public static final ItemType ACACIA_FENCE_GATE = init();
|
||||
@Nullable
|
||||
public static final ItemType ACACIA_HANGING_SIGN = init();
|
||||
@Nullable
|
||||
public static final ItemType ACACIA_LEAVES = init();
|
||||
@Nullable
|
||||
public static final ItemType ACACIA_LOG = init();
|
||||
@ -93,12 +95,18 @@ public final class ItemTypes {
|
||||
@Nullable
|
||||
public static final ItemType ANDESITE_WALL = init();
|
||||
@Nullable
|
||||
public static final ItemType ANGLER_POTTERY_SHERD = init();
|
||||
@Nullable
|
||||
public static final ItemType ANVIL = init();
|
||||
@Nullable
|
||||
public static final ItemType APPLE = init();
|
||||
@Nullable
|
||||
public static final ItemType ARCHER_POTTERY_SHERD = init();
|
||||
@Nullable
|
||||
public static final ItemType ARMOR_STAND = init();
|
||||
@Nullable
|
||||
public static final ItemType ARMS_UP_POTTERY_SHERD = init();
|
||||
@Nullable
|
||||
public static final ItemType ARROW = init();
|
||||
@Nullable
|
||||
public static final ItemType AXOLOTL_BUCKET = init();
|
||||
@ -115,6 +123,40 @@ public final class ItemTypes {
|
||||
@Nullable
|
||||
public static final ItemType BAMBOO = init();
|
||||
@Nullable
|
||||
public static final ItemType BAMBOO_BLOCK = init();
|
||||
@Nullable
|
||||
public static final ItemType BAMBOO_BUTTON = init();
|
||||
@Nullable
|
||||
public static final ItemType BAMBOO_CHEST_RAFT = init();
|
||||
@Nullable
|
||||
public static final ItemType BAMBOO_DOOR = init();
|
||||
@Nullable
|
||||
public static final ItemType BAMBOO_FENCE = init();
|
||||
@Nullable
|
||||
public static final ItemType BAMBOO_FENCE_GATE = init();
|
||||
@Nullable
|
||||
public static final ItemType BAMBOO_HANGING_SIGN = init();
|
||||
@Nullable
|
||||
public static final ItemType BAMBOO_MOSAIC = init();
|
||||
@Nullable
|
||||
public static final ItemType BAMBOO_MOSAIC_SLAB = init();
|
||||
@Nullable
|
||||
public static final ItemType BAMBOO_MOSAIC_STAIRS = init();
|
||||
@Nullable
|
||||
public static final ItemType BAMBOO_PLANKS = init();
|
||||
@Nullable
|
||||
public static final ItemType BAMBOO_PRESSURE_PLATE = init();
|
||||
@Nullable
|
||||
public static final ItemType BAMBOO_RAFT = init();
|
||||
@Nullable
|
||||
public static final ItemType BAMBOO_SIGN = init();
|
||||
@Nullable
|
||||
public static final ItemType BAMBOO_SLAB = init();
|
||||
@Nullable
|
||||
public static final ItemType BAMBOO_STAIRS = init();
|
||||
@Nullable
|
||||
public static final ItemType BAMBOO_TRAPDOOR = init();
|
||||
@Nullable
|
||||
public static final ItemType BARREL = init();
|
||||
@Nullable
|
||||
public static final ItemType BARRIER = init();
|
||||
@ -157,6 +199,8 @@ public final class ItemTypes {
|
||||
@Nullable
|
||||
public static final ItemType BIRCH_FENCE_GATE = init();
|
||||
@Nullable
|
||||
public static final ItemType BIRCH_HANGING_SIGN = init();
|
||||
@Nullable
|
||||
public static final ItemType BIRCH_LEAVES = init();
|
||||
@Nullable
|
||||
public static final ItemType BIRCH_LOG = init();
|
||||
@ -211,6 +255,8 @@ public final class ItemTypes {
|
||||
@Nullable
|
||||
public static final ItemType BLACKSTONE_WALL = init();
|
||||
@Nullable
|
||||
public static final ItemType BLADE_POTTERY_SHERD = init();
|
||||
@Nullable
|
||||
public static final ItemType BLAST_FURNACE = init();
|
||||
@Nullable
|
||||
public static final ItemType BLAZE_POWDER = init();
|
||||
@ -273,6 +319,8 @@ public final class ItemTypes {
|
||||
@Nullable
|
||||
public static final ItemType BREAD = init();
|
||||
@Nullable
|
||||
public static final ItemType BREWER_POTTERY_SHERD = init();
|
||||
@Nullable
|
||||
public static final ItemType BREWING_STAND = init();
|
||||
@Nullable
|
||||
public static final ItemType BRICK = init();
|
||||
@ -313,6 +361,8 @@ public final class ItemTypes {
|
||||
@Nullable
|
||||
public static final ItemType BROWN_WOOL = init();
|
||||
@Nullable
|
||||
public static final ItemType BRUSH = init();
|
||||
@Nullable
|
||||
public static final ItemType BUBBLE_CORAL = init();
|
||||
@Nullable
|
||||
public static final ItemType BUBBLE_CORAL_BLOCK = init();
|
||||
@ -325,6 +375,8 @@ public final class ItemTypes {
|
||||
@Nullable
|
||||
public static final ItemType BUNDLE = init();
|
||||
@Nullable
|
||||
public static final ItemType BURN_POTTERY_SHERD = init();
|
||||
@Nullable
|
||||
public static final ItemType CACTUS = init();
|
||||
@Deprecated
|
||||
@Nullable
|
||||
@ -334,6 +386,10 @@ public final class ItemTypes {
|
||||
@Nullable
|
||||
public static final ItemType CALCITE = init();
|
||||
@Nullable
|
||||
public static final ItemType CALIBRATED_SCULK_SENSOR = init();
|
||||
@Nullable
|
||||
public static final ItemType CAMEL_SPAWN_EGG = init();
|
||||
@Nullable
|
||||
public static final ItemType CAMPFIRE = init();
|
||||
@Nullable
|
||||
public static final ItemType CANDLE = init();
|
||||
@ -366,6 +422,40 @@ public final class ItemTypes {
|
||||
@Nullable
|
||||
public static final ItemType CHARCOAL = init();
|
||||
@Nullable
|
||||
public static final ItemType CHERRY_BOAT = init();
|
||||
@Nullable
|
||||
public static final ItemType CHERRY_BUTTON = init();
|
||||
@Nullable
|
||||
public static final ItemType CHERRY_CHEST_BOAT = init();
|
||||
@Nullable
|
||||
public static final ItemType CHERRY_DOOR = init();
|
||||
@Nullable
|
||||
public static final ItemType CHERRY_FENCE = init();
|
||||
@Nullable
|
||||
public static final ItemType CHERRY_FENCE_GATE = init();
|
||||
@Nullable
|
||||
public static final ItemType CHERRY_HANGING_SIGN = init();
|
||||
@Nullable
|
||||
public static final ItemType CHERRY_LEAVES = init();
|
||||
@Nullable
|
||||
public static final ItemType CHERRY_LOG = init();
|
||||
@Nullable
|
||||
public static final ItemType CHERRY_PLANKS = init();
|
||||
@Nullable
|
||||
public static final ItemType CHERRY_PRESSURE_PLATE = init();
|
||||
@Nullable
|
||||
public static final ItemType CHERRY_SAPLING = init();
|
||||
@Nullable
|
||||
public static final ItemType CHERRY_SIGN = init();
|
||||
@Nullable
|
||||
public static final ItemType CHERRY_SLAB = init();
|
||||
@Nullable
|
||||
public static final ItemType CHERRY_STAIRS = init();
|
||||
@Nullable
|
||||
public static final ItemType CHERRY_TRAPDOOR = init();
|
||||
@Nullable
|
||||
public static final ItemType CHERRY_WOOD = init();
|
||||
@Nullable
|
||||
public static final ItemType CHEST = init();
|
||||
@Nullable
|
||||
public static final ItemType CHEST_MINECART = init();
|
||||
@ -376,6 +466,8 @@ public final class ItemTypes {
|
||||
@Nullable
|
||||
public static final ItemType CHIPPED_ANVIL = init();
|
||||
@Nullable
|
||||
public static final ItemType CHISELED_BOOKSHELF = init();
|
||||
@Nullable
|
||||
public static final ItemType CHISELED_DEEPSLATE = init();
|
||||
@Nullable
|
||||
public static final ItemType CHISELED_NETHER_BRICKS = init();
|
||||
@ -410,6 +502,8 @@ public final class ItemTypes {
|
||||
@Nullable
|
||||
public static final ItemType COARSE_DIRT = init();
|
||||
@Nullable
|
||||
public static final ItemType COAST_ARMOR_TRIM_SMITHING_TEMPLATE = init();
|
||||
@Nullable
|
||||
public static final ItemType COBBLED_DEEPSLATE = init();
|
||||
@Nullable
|
||||
public static final ItemType COBBLED_DEEPSLATE_SLAB = init();
|
||||
@ -502,6 +596,8 @@ public final class ItemTypes {
|
||||
@Nullable
|
||||
public static final ItemType CRIMSON_FUNGUS = init();
|
||||
@Nullable
|
||||
public static final ItemType CRIMSON_HANGING_SIGN = init();
|
||||
@Nullable
|
||||
public static final ItemType CRIMSON_HYPHAE = init();
|
||||
@Nullable
|
||||
public static final ItemType CRIMSON_NYLIUM = init();
|
||||
@ -573,6 +669,8 @@ public final class ItemTypes {
|
||||
@Nullable
|
||||
public static final ItemType DANDELION_YELLOW = init();
|
||||
@Nullable
|
||||
public static final ItemType DANGER_POTTERY_SHERD = init();
|
||||
@Nullable
|
||||
public static final ItemType DARK_OAK_BOAT = init();
|
||||
@Nullable
|
||||
public static final ItemType DARK_OAK_BUTTON = init();
|
||||
@ -585,6 +683,8 @@ public final class ItemTypes {
|
||||
@Nullable
|
||||
public static final ItemType DARK_OAK_FENCE_GATE = init();
|
||||
@Nullable
|
||||
public static final ItemType DARK_OAK_HANGING_SIGN = init();
|
||||
@Nullable
|
||||
public static final ItemType DARK_OAK_LEAVES = init();
|
||||
@Nullable
|
||||
public static final ItemType DARK_OAK_LOG = init();
|
||||
@ -647,6 +747,8 @@ public final class ItemTypes {
|
||||
@Nullable
|
||||
public static final ItemType DEBUG_STICK = init();
|
||||
@Nullable
|
||||
public static final ItemType DECORATED_POT = init();
|
||||
@Nullable
|
||||
public static final ItemType DEEPSLATE = init();
|
||||
@Nullable
|
||||
public static final ItemType DEEPSLATE_BRICK_SLAB = init();
|
||||
@ -745,6 +847,8 @@ public final class ItemTypes {
|
||||
@Nullable
|
||||
public static final ItemType DROWNED_SPAWN_EGG = init();
|
||||
@Nullable
|
||||
public static final ItemType DUNE_ARMOR_TRIM_SMITHING_TEMPLATE = init();
|
||||
@Nullable
|
||||
public static final ItemType ECHO_SHARD = init();
|
||||
@Nullable
|
||||
public static final ItemType EGG = init();
|
||||
@ -783,6 +887,8 @@ public final class ItemTypes {
|
||||
@Nullable
|
||||
public static final ItemType ENDER_CHEST = init();
|
||||
@Nullable
|
||||
public static final ItemType ENDER_DRAGON_SPAWN_EGG = init();
|
||||
@Nullable
|
||||
public static final ItemType ENDER_EYE = init();
|
||||
@Nullable
|
||||
public static final ItemType ENDER_PEARL = init();
|
||||
@ -795,6 +901,8 @@ public final class ItemTypes {
|
||||
@Nullable
|
||||
public static final ItemType EXPERIENCE_BOTTLE = init();
|
||||
@Nullable
|
||||
public static final ItemType EXPLORER_POTTERY_SHERD = init();
|
||||
@Nullable
|
||||
public static final ItemType EXPOSED_COPPER = init();
|
||||
@Nullable
|
||||
public static final ItemType EXPOSED_CUT_COPPER = init();
|
||||
@ -803,6 +911,8 @@ public final class ItemTypes {
|
||||
@Nullable
|
||||
public static final ItemType EXPOSED_CUT_COPPER_STAIRS = init();
|
||||
@Nullable
|
||||
public static final ItemType EYE_ARMOR_TRIM_SMITHING_TEMPLATE = init();
|
||||
@Nullable
|
||||
public static final ItemType FARMLAND = init();
|
||||
@Nullable
|
||||
public static final ItemType FEATHER = init();
|
||||
@ -843,6 +953,8 @@ public final class ItemTypes {
|
||||
@Nullable
|
||||
public static final ItemType FOX_SPAWN_EGG = init();
|
||||
@Nullable
|
||||
public static final ItemType FRIEND_POTTERY_SHERD = init();
|
||||
@Nullable
|
||||
public static final ItemType FROG_SPAWN_EGG = init();
|
||||
@Nullable
|
||||
public static final ItemType FROGSPAWN = init();
|
||||
@ -998,6 +1110,10 @@ public final class ItemTypes {
|
||||
@Nullable
|
||||
public static final ItemType HEART_OF_THE_SEA = init();
|
||||
@Nullable
|
||||
public static final ItemType HEART_POTTERY_SHERD = init();
|
||||
@Nullable
|
||||
public static final ItemType HEARTBREAK_POTTERY_SHERD = init();
|
||||
@Nullable
|
||||
public static final ItemType HEAVY_WEIGHTED_PRESSURE_PLATE = init();
|
||||
@Nullable
|
||||
public static final ItemType HOGLIN_SPAWN_EGG = init();
|
||||
@ -1022,6 +1138,10 @@ public final class ItemTypes {
|
||||
@Nullable
|
||||
public static final ItemType HORSE_SPAWN_EGG = init();
|
||||
@Nullable
|
||||
public static final ItemType HOST_ARMOR_TRIM_SMITHING_TEMPLATE = init();
|
||||
@Nullable
|
||||
public static final ItemType HOWL_POTTERY_SHERD = init();
|
||||
@Nullable
|
||||
public static final ItemType HUSK_SPAWN_EGG = init();
|
||||
@Nullable
|
||||
public static final ItemType ICE = init();
|
||||
@ -1054,6 +1174,8 @@ public final class ItemTypes {
|
||||
@Nullable
|
||||
public static final ItemType IRON_DOOR = init();
|
||||
@Nullable
|
||||
public static final ItemType IRON_GOLEM_SPAWN_EGG = init();
|
||||
@Nullable
|
||||
public static final ItemType IRON_HELMET = init();
|
||||
@Nullable
|
||||
public static final ItemType IRON_HOE = init();
|
||||
@ -1096,6 +1218,8 @@ public final class ItemTypes {
|
||||
@Nullable
|
||||
public static final ItemType JUNGLE_FENCE_GATE = init();
|
||||
@Nullable
|
||||
public static final ItemType JUNGLE_HANGING_SIGN = init();
|
||||
@Nullable
|
||||
public static final ItemType JUNGLE_LEAVES = init();
|
||||
@Nullable
|
||||
public static final ItemType JUNGLE_LOG = init();
|
||||
@ -1296,6 +1420,8 @@ public final class ItemTypes {
|
||||
@Nullable
|
||||
public static final ItemType MANGROVE_FENCE_GATE = init();
|
||||
@Nullable
|
||||
public static final ItemType MANGROVE_HANGING_SIGN = init();
|
||||
@Nullable
|
||||
public static final ItemType MANGROVE_LEAVES = init();
|
||||
@Nullable
|
||||
public static final ItemType MANGROVE_LOG = init();
|
||||
@ -1332,6 +1458,8 @@ public final class ItemTypes {
|
||||
@Nullable
|
||||
public static final ItemType MINECART = init();
|
||||
@Nullable
|
||||
public static final ItemType MINER_POTTERY_SHERD = init();
|
||||
@Nullable
|
||||
public static final ItemType MOJANG_BANNER_PATTERN = init();
|
||||
@Nullable
|
||||
public static final ItemType MOOSHROOM_SPAWN_EGG = init();
|
||||
@ -1356,6 +1484,8 @@ public final class ItemTypes {
|
||||
@Nullable
|
||||
public static final ItemType MOSSY_STONE_BRICKS = init();
|
||||
@Nullable
|
||||
public static final ItemType MOURNER_POTTERY_SHERD = init();
|
||||
@Nullable
|
||||
public static final ItemType MUD = init();
|
||||
@Nullable
|
||||
public static final ItemType MUD_BRICK_SLAB = init();
|
||||
@ -1396,6 +1526,8 @@ public final class ItemTypes {
|
||||
@Nullable
|
||||
public static final ItemType MUSIC_DISC_PIGSTEP = init();
|
||||
@Nullable
|
||||
public static final ItemType MUSIC_DISC_RELIC = init();
|
||||
@Nullable
|
||||
public static final ItemType MUSIC_DISC_STAL = init();
|
||||
@Nullable
|
||||
public static final ItemType MUSIC_DISC_STRAD = init();
|
||||
@ -1460,6 +1592,8 @@ public final class ItemTypes {
|
||||
@Nullable
|
||||
public static final ItemType NETHERITE_SWORD = init();
|
||||
@Nullable
|
||||
public static final ItemType NETHERITE_UPGRADE_SMITHING_TEMPLATE = init();
|
||||
@Nullable
|
||||
public static final ItemType NETHERRACK = init();
|
||||
@Nullable
|
||||
public static final ItemType NOTE_BLOCK = init();
|
||||
@ -1476,6 +1610,8 @@ public final class ItemTypes {
|
||||
@Nullable
|
||||
public static final ItemType OAK_FENCE_GATE = init();
|
||||
@Nullable
|
||||
public static final ItemType OAK_HANGING_SIGN = init();
|
||||
@Nullable
|
||||
public static final ItemType OAK_LEAVES = init();
|
||||
@Nullable
|
||||
public static final ItemType OAK_LOG = init();
|
||||
@ -1568,6 +1704,10 @@ public final class ItemTypes {
|
||||
@Nullable
|
||||
public static final ItemType PIGLIN_BANNER_PATTERN = init();
|
||||
@Nullable
|
||||
public static final ItemType PIGLIN_BRUTE_SPAWN_EGG = init();
|
||||
@Nullable
|
||||
public static final ItemType PIGLIN_HEAD = init();
|
||||
@Nullable
|
||||
public static final ItemType PIGLIN_SPAWN_EGG = init();
|
||||
@Nullable
|
||||
public static final ItemType PILLAGER_SPAWN_EGG = init();
|
||||
@ -1588,6 +1728,8 @@ public final class ItemTypes {
|
||||
@Nullable
|
||||
public static final ItemType PINK_GLAZED_TERRACOTTA = init();
|
||||
@Nullable
|
||||
public static final ItemType PINK_PETALS = init();
|
||||
@Nullable
|
||||
public static final ItemType PINK_SHULKER_BOX = init();
|
||||
@Nullable
|
||||
public static final ItemType PINK_STAINED_GLASS = init();
|
||||
@ -1602,8 +1744,14 @@ public final class ItemTypes {
|
||||
@Nullable
|
||||
public static final ItemType PISTON = init();
|
||||
@Nullable
|
||||
public static final ItemType PITCHER_PLANT = init();
|
||||
@Nullable
|
||||
public static final ItemType PITCHER_POD = init();
|
||||
@Nullable
|
||||
public static final ItemType PLAYER_HEAD = init();
|
||||
@Nullable
|
||||
public static final ItemType PLENTY_POTTERY_SHERD = init();
|
||||
@Nullable
|
||||
public static final ItemType PODZOL = init();
|
||||
@Nullable
|
||||
public static final ItemType POINTED_DRIPSTONE = init();
|
||||
@ -1692,6 +1840,8 @@ public final class ItemTypes {
|
||||
@Nullable
|
||||
public static final ItemType PRISMARINE_WALL = init();
|
||||
@Nullable
|
||||
public static final ItemType PRIZE_POTTERY_SHERD = init();
|
||||
@Nullable
|
||||
public static final ItemType PUFFERFISH = init();
|
||||
@Nullable
|
||||
public static final ItemType PUFFERFISH_BUCKET = init();
|
||||
@ -1762,6 +1912,8 @@ public final class ItemTypes {
|
||||
@Nullable
|
||||
public static final ItemType RAIL = init();
|
||||
@Nullable
|
||||
public static final ItemType RAISER_ARMOR_TRIM_SMITHING_TEMPLATE = init();
|
||||
@Nullable
|
||||
public static final ItemType RAVAGER_SPAWN_EGG = init();
|
||||
@Nullable
|
||||
public static final ItemType RAW_COPPER = init();
|
||||
@ -1846,6 +1998,8 @@ public final class ItemTypes {
|
||||
@Nullable
|
||||
public static final ItemType RESPAWN_ANCHOR = init();
|
||||
@Nullable
|
||||
public static final ItemType RIB_ARMOR_TRIM_SMITHING_TEMPLATE = init();
|
||||
@Nullable
|
||||
public static final ItemType ROOTED_DIRT = init();
|
||||
@Nullable
|
||||
public static final ItemType ROSE_BUSH = init();
|
||||
@ -1893,10 +2047,18 @@ public final class ItemTypes {
|
||||
@Nullable
|
||||
public static final ItemType SEAGRASS = init();
|
||||
@Nullable
|
||||
public static final ItemType SENTRY_ARMOR_TRIM_SMITHING_TEMPLATE = init();
|
||||
@Nullable
|
||||
public static final ItemType SHAPER_ARMOR_TRIM_SMITHING_TEMPLATE = init();
|
||||
@Nullable
|
||||
public static final ItemType SHEAF_POTTERY_SHERD = init();
|
||||
@Nullable
|
||||
public static final ItemType SHEARS = init();
|
||||
@Nullable
|
||||
public static final ItemType SHEEP_SPAWN_EGG = init();
|
||||
@Nullable
|
||||
public static final ItemType SHELTER_POTTERY_SHERD = init();
|
||||
@Nullable
|
||||
public static final ItemType SHIELD = init();
|
||||
@Nullable
|
||||
public static final ItemType SHROOMLIGHT = init();
|
||||
@ -1910,6 +2072,8 @@ public final class ItemTypes {
|
||||
@Nullable
|
||||
public static final ItemType SIGN = init();
|
||||
@Nullable
|
||||
public static final ItemType SILENCE_ARMOR_TRIM_SMITHING_TEMPLATE = init();
|
||||
@Nullable
|
||||
public static final ItemType SILVERFISH_SPAWN_EGG = init();
|
||||
@Nullable
|
||||
public static final ItemType SKELETON_HORSE_SPAWN_EGG = init();
|
||||
@ -1920,6 +2084,8 @@ public final class ItemTypes {
|
||||
@Nullable
|
||||
public static final ItemType SKULL_BANNER_PATTERN = init();
|
||||
@Nullable
|
||||
public static final ItemType SKULL_POTTERY_SHERD = init();
|
||||
@Nullable
|
||||
public static final ItemType SLIME_BALL = init();
|
||||
@Nullable
|
||||
public static final ItemType SLIME_BLOCK = init();
|
||||
@ -1958,10 +2124,20 @@ public final class ItemTypes {
|
||||
@Nullable
|
||||
public static final ItemType SMOOTH_STONE_SLAB = init();
|
||||
@Nullable
|
||||
public static final ItemType SNIFFER_EGG = init();
|
||||
@Nullable
|
||||
public static final ItemType SNIFFER_SPAWN_EGG = init();
|
||||
@Nullable
|
||||
public static final ItemType SNORT_POTTERY_SHERD = init();
|
||||
@Nullable
|
||||
public static final ItemType SNOUT_ARMOR_TRIM_SMITHING_TEMPLATE = init();
|
||||
@Nullable
|
||||
public static final ItemType SNOW = init();
|
||||
@Nullable
|
||||
public static final ItemType SNOW_BLOCK = init();
|
||||
@Nullable
|
||||
public static final ItemType SNOW_GOLEM_SPAWN_EGG = init();
|
||||
@Nullable
|
||||
public static final ItemType SNOWBALL = init();
|
||||
@Nullable
|
||||
public static final ItemType SOUL_CAMPFIRE = init();
|
||||
@ -1982,6 +2158,8 @@ public final class ItemTypes {
|
||||
@Nullable
|
||||
public static final ItemType SPIDER_SPAWN_EGG = init();
|
||||
@Nullable
|
||||
public static final ItemType SPIRE_ARMOR_TRIM_SMITHING_TEMPLATE = init();
|
||||
@Nullable
|
||||
public static final ItemType SPLASH_POTION = init();
|
||||
@Nullable
|
||||
public static final ItemType SPONGE = init();
|
||||
@ -2000,6 +2178,8 @@ public final class ItemTypes {
|
||||
@Nullable
|
||||
public static final ItemType SPRUCE_FENCE_GATE = init();
|
||||
@Nullable
|
||||
public static final ItemType SPRUCE_HANGING_SIGN = init();
|
||||
@Nullable
|
||||
public static final ItemType SPRUCE_LEAVES = init();
|
||||
@Nullable
|
||||
public static final ItemType SPRUCE_LOG = init();
|
||||
@ -2068,10 +2248,16 @@ public final class ItemTypes {
|
||||
@Nullable
|
||||
public static final ItemType STRIPPED_ACACIA_WOOD = init();
|
||||
@Nullable
|
||||
public static final ItemType STRIPPED_BAMBOO_BLOCK = init();
|
||||
@Nullable
|
||||
public static final ItemType STRIPPED_BIRCH_LOG = init();
|
||||
@Nullable
|
||||
public static final ItemType STRIPPED_BIRCH_WOOD = init();
|
||||
@Nullable
|
||||
public static final ItemType STRIPPED_CHERRY_LOG = init();
|
||||
@Nullable
|
||||
public static final ItemType STRIPPED_CHERRY_WOOD = init();
|
||||
@Nullable
|
||||
public static final ItemType STRIPPED_CRIMSON_HYPHAE = init();
|
||||
@Nullable
|
||||
public static final ItemType STRIPPED_CRIMSON_STEM = init();
|
||||
@ -2110,6 +2296,10 @@ public final class ItemTypes {
|
||||
@Nullable
|
||||
public static final ItemType SUNFLOWER = init();
|
||||
@Nullable
|
||||
public static final ItemType SUSPICIOUS_GRAVEL = init();
|
||||
@Nullable
|
||||
public static final ItemType SUSPICIOUS_SAND = init();
|
||||
@Nullable
|
||||
public static final ItemType SUSPICIOUS_STEW = init();
|
||||
@Nullable
|
||||
public static final ItemType SWEET_BERRIES = init();
|
||||
@ -2124,6 +2314,8 @@ public final class ItemTypes {
|
||||
@Nullable
|
||||
public static final ItemType TERRACOTTA = init();
|
||||
@Nullable
|
||||
public static final ItemType TIDE_ARMOR_TRIM_SMITHING_TEMPLATE = init();
|
||||
@Nullable
|
||||
public static final ItemType TINTED_GLASS = init();
|
||||
@Nullable
|
||||
public static final ItemType TIPPED_ARROW = init();
|
||||
@ -2134,6 +2326,10 @@ public final class ItemTypes {
|
||||
@Nullable
|
||||
public static final ItemType TORCH = init();
|
||||
@Nullable
|
||||
public static final ItemType TORCHFLOWER = init();
|
||||
@Nullable
|
||||
public static final ItemType TORCHFLOWER_SEEDS = init();
|
||||
@Nullable
|
||||
public static final ItemType TOTEM_OF_UNDYING = init();
|
||||
@Nullable
|
||||
public static final ItemType TRADER_LLAMA_SPAWN_EGG = init();
|
||||
@ -2168,6 +2364,8 @@ public final class ItemTypes {
|
||||
@Nullable
|
||||
public static final ItemType VERDANT_FROGLIGHT = init();
|
||||
@Nullable
|
||||
public static final ItemType VEX_ARMOR_TRIM_SMITHING_TEMPLATE = init();
|
||||
@Nullable
|
||||
public static final ItemType VEX_SPAWN_EGG = init();
|
||||
@Nullable
|
||||
public static final ItemType VILLAGER_SPAWN_EGG = init();
|
||||
@ -2178,6 +2376,8 @@ public final class ItemTypes {
|
||||
@Nullable
|
||||
public static final ItemType WANDERING_TRADER_SPAWN_EGG = init();
|
||||
@Nullable
|
||||
public static final ItemType WARD_ARMOR_TRIM_SMITHING_TEMPLATE = init();
|
||||
@Nullable
|
||||
public static final ItemType WARDEN_SPAWN_EGG = init();
|
||||
@Nullable
|
||||
public static final ItemType WARPED_BUTTON = init();
|
||||
@ -2192,6 +2392,8 @@ public final class ItemTypes {
|
||||
@Nullable
|
||||
public static final ItemType WARPED_FUNGUS_ON_A_STICK = init();
|
||||
@Nullable
|
||||
public static final ItemType WARPED_HANGING_SIGN = init();
|
||||
@Nullable
|
||||
public static final ItemType WARPED_HYPHAE = init();
|
||||
@Nullable
|
||||
public static final ItemType WARPED_NYLIUM = init();
|
||||
@ -2248,6 +2450,8 @@ public final class ItemTypes {
|
||||
@Nullable
|
||||
public static final ItemType WAXED_WEATHERED_CUT_COPPER_STAIRS = init();
|
||||
@Nullable
|
||||
public static final ItemType WAYFINDER_ARMOR_TRIM_SMITHING_TEMPLATE = init();
|
||||
@Nullable
|
||||
public static final ItemType WEATHERED_COPPER = init();
|
||||
@Nullable
|
||||
public static final ItemType WEATHERED_CUT_COPPER = init();
|
||||
@ -2292,6 +2496,8 @@ public final class ItemTypes {
|
||||
@Nullable
|
||||
public static final ItemType WHITE_WOOL = init();
|
||||
@Nullable
|
||||
public static final ItemType WILD_ARMOR_TRIM_SMITHING_TEMPLATE = init();
|
||||
@Nullable
|
||||
public static final ItemType WITCH_SPAWN_EGG = init();
|
||||
@Nullable
|
||||
public static final ItemType WITHER_ROSE = init();
|
||||
@ -2300,6 +2506,8 @@ public final class ItemTypes {
|
||||
@Nullable
|
||||
public static final ItemType WITHER_SKELETON_SPAWN_EGG = init();
|
||||
@Nullable
|
||||
public static final ItemType WITHER_SPAWN_EGG = init();
|
||||
@Nullable
|
||||
public static final ItemType WOLF_SPAWN_EGG = init();
|
||||
@Nullable
|
||||
public static final ItemType WOODEN_AXE = init();
|
||||
|
@ -47,6 +47,7 @@ public class BundledRegistries implements Registries {
|
||||
versionMap.put(Range.atLeast(Constants.DATA_VERSION_MC_1_17), "117");
|
||||
// 1.18 did have one item change, but we didn't get it. It's fine.
|
||||
versionMap.put(Range.atLeast(Constants.DATA_VERSION_MC_1_19), "119");
|
||||
versionMap.put(Range.atLeast(Constants.DATA_VERSION_MC_1_20), "120");
|
||||
VERSION_MAP = ImmutableRangeMap.copyOf(versionMap);
|
||||
}
|
||||
|
||||
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user