diff --git a/worldedit-core/src/main/java/com/sk89q/worldedit/world/biome/BiomeTypes.java b/worldedit-core/src/main/java/com/sk89q/worldedit/world/biome/BiomeTypes.java index e8a5e144ac..2d8973c6a0 100644 --- a/worldedit-core/src/main/java/com/sk89q/worldedit/world/biome/BiomeTypes.java +++ b/worldedit-core/src/main/java/com/sk89q/worldedit/world/biome/BiomeTypes.java @@ -179,6 +179,8 @@ public final class BiomeTypes { @Nullable public static final BiomeType OLD_GROWTH_SPRUCE_TAIGA = get("minecraft:old_growth_spruce_taiga"); @Nullable + public static final BiomeType PALE_GARDEN = get("minecraft:pale_garden"); + @Nullable public static final BiomeType PLAINS = get("minecraft:plains"); @Nullable public static final BiomeType RIVER = get("minecraft:river"); diff --git a/worldedit-core/src/main/java/com/sk89q/worldedit/world/block/BlockCategories.java b/worldedit-core/src/main/java/com/sk89q/worldedit/world/block/BlockCategories.java index 7d09d509e2..94b0968824 100644 --- a/worldedit-core/src/main/java/com/sk89q/worldedit/world/block/BlockCategories.java +++ b/worldedit-core/src/main/java/com/sk89q/worldedit/world/block/BlockCategories.java @@ -45,6 +45,7 @@ public final class BlockCategories { public static final BlockCategory BASE_STONE_OVERWORLD = get("minecraft:base_stone_overworld"); public static final BlockCategory BEACON_BASE_BLOCKS = get("minecraft:beacon_base_blocks"); public static final BlockCategory BEDS = get("minecraft:beds"); + public static final BlockCategory BEE_ATTRACTIVE = get("minecraft:bee_attractive"); public static final BlockCategory BEE_GROWABLES = get("minecraft:bee_growables"); public static final BlockCategory BEEHIVES = get("minecraft:beehives"); public static final BlockCategory BIG_DRIPLEAF_PLACEABLE = get("minecraft:big_dripleaf_placeable"); @@ -146,6 +147,7 @@ public final class BlockCategories { public static final BlockCategory OCCLUDES_VIBRATION_SIGNALS = get("minecraft:occludes_vibration_signals"); public static final BlockCategory OVERWORLD_CARVER_REPLACEABLES = get("minecraft:overworld_carver_replaceables"); public static final BlockCategory OVERWORLD_NATURAL_LOGS = get("minecraft:overworld_natural_logs"); + public static final BlockCategory PALE_OAK_LOGS = get("minecraft:pale_oak_logs"); public static final BlockCategory PARROTS_SPAWNABLE_ON = get("minecraft:parrots_spawnable_on"); public static final BlockCategory PIGLIN_REPELLENTS = get("minecraft:piglin_repellents"); public static final BlockCategory PLANKS = get("minecraft:planks"); @@ -186,7 +188,7 @@ public final class BlockCategories { 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"); + @Deprecated 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"); diff --git a/worldedit-core/src/main/java/com/sk89q/worldedit/world/block/BlockTypes.java b/worldedit-core/src/main/java/com/sk89q/worldedit/world/block/BlockTypes.java index 2667d44f9c..083e9ec670 100644 --- a/worldedit-core/src/main/java/com/sk89q/worldedit/world/block/BlockTypes.java +++ b/worldedit-core/src/main/java/com/sk89q/worldedit/world/block/BlockTypes.java @@ -427,6 +427,8 @@ public final class BlockTypes { @Nullable public static final BlockType CHISELED_RED_SANDSTONE = init(); @Nullable + public static final BlockType CHISELED_RESIN_BRICKS = init(); + @Nullable public static final BlockType CHISELED_SANDSTONE = init(); @Nullable public static final BlockType CHISELED_STONE_BRICKS = init(); @@ -441,6 +443,8 @@ public final class BlockTypes { @Nullable public static final BlockType CLAY = init(); @Nullable + public static final BlockType CLOSED_EYEBLOSSOM = init(); + @Nullable public static final BlockType COAL_BLOCK = init(); @Nullable public static final BlockType COAL_ORE = init(); @@ -1294,6 +1298,8 @@ public final class BlockTypes { @Nullable public static final BlockType OCHRE_FROGLIGHT = init(); @Nullable + public static final BlockType OPEN_EYEBLOSSOM = init(); + @Nullable public static final BlockType ORANGE_BANNER = init(); @Nullable public static final BlockType ORANGE_BED = init(); @@ -1489,6 +1495,8 @@ public final class BlockTypes { @Nullable public static final BlockType POTTED_CHERRY_SAPLING = init(); @Nullable + public static final BlockType POTTED_CLOSED_EYEBLOSSOM = init(); + @Nullable public static final BlockType POTTED_CORNFLOWER = init(); @Nullable public static final BlockType POTTED_CRIMSON_FUNGUS = init(); @@ -1516,6 +1524,8 @@ public final class BlockTypes { @Nullable public static final BlockType POTTED_OAK_SAPLING = init(); @Nullable + public static final BlockType POTTED_OPEN_EYEBLOSSOM = init(); + @Nullable public static final BlockType POTTED_ORANGE_TULIP = init(); @Nullable public static final BlockType POTTED_OXEYE_DAISY = init(); @@ -1688,6 +1698,18 @@ public final class BlockTypes { @Nullable public static final BlockType REPEATING_COMMAND_BLOCK = init(); @Nullable + public static final BlockType RESIN_BLOCK = init(); + @Nullable + public static final BlockType RESIN_BRICK_SLAB = init(); + @Nullable + public static final BlockType RESIN_BRICK_STAIRS = init(); + @Nullable + public static final BlockType RESIN_BRICK_WALL = init(); + @Nullable + public static final BlockType RESIN_BRICKS = init(); + @Nullable + public static final BlockType RESIN_CLUMP = init(); + @Nullable public static final BlockType RESPAWN_ANCHOR = init(); @Nullable public static final BlockType ROOTED_DIRT = init(); diff --git a/worldedit-core/src/main/java/com/sk89q/worldedit/world/entity/EntityTypes.java b/worldedit-core/src/main/java/com/sk89q/worldedit/world/entity/EntityTypes.java index 52044abdf4..dc5ff173eb 100644 --- a/worldedit-core/src/main/java/com/sk89q/worldedit/world/entity/EntityTypes.java +++ b/worldedit-core/src/main/java/com/sk89q/worldedit/world/entity/EntityTypes.java @@ -77,6 +77,10 @@ public final class EntityTypes { @Nullable public static final EntityType COW = get("minecraft:cow"); @Nullable + public static final EntityType CREAKING = get("minecraft:creaking"); + @Deprecated @Nullable + public static final EntityType CREAKING_TRANSIENT = get("minecraft:creaking_transient"); + @Nullable public static final EntityType CREEPER = get("minecraft:creeper"); @Nullable public static final EntityType DOLPHIN = get("minecraft:dolphin"); diff --git a/worldedit-core/src/main/java/com/sk89q/worldedit/world/item/ItemCategories.java b/worldedit-core/src/main/java/com/sk89q/worldedit/world/item/ItemCategories.java index 466db6fdd4..7d4898087d 100644 --- a/worldedit-core/src/main/java/com/sk89q/worldedit/world/item/ItemCategories.java +++ b/worldedit-core/src/main/java/com/sk89q/worldedit/world/item/ItemCategories.java @@ -69,6 +69,7 @@ public final class ItemCategories { 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 DROWNED_PREFERRED_WEAPONS = get("minecraft:drowned_preferred_weapons"); public static final ItemCategory DYEABLE = get("minecraft:dyeable"); public static final ItemCategory EMERALD_ORES = get("minecraft:emerald_ores"); public static final ItemCategory ENCHANTABLE_ARMOR = get("minecraft:enchantable/armor"); @@ -92,7 +93,7 @@ public final class ItemCategories { 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"); + @Deprecated public static final ItemCategory FLOWERS = get("minecraft:flowers"); public static final ItemCategory FOOT_ARMOR = get("minecraft:foot_armor"); public static final ItemCategory FOX_FOOD = get("minecraft:fox_food"); public static final ItemCategory FREEZE_IMMUNE_WEARABLES = get("minecraft:freeze_immune_wearables"); @@ -127,6 +128,7 @@ public final class ItemCategories { @Deprecated public static final ItemCategory OCCLUDES_VIBRATION_SIGNALS = get("minecraft:occludes_vibration_signals"); public static final ItemCategory OCELOT_FOOD = get("minecraft:ocelot_food"); @Deprecated public static final ItemCategory OVERWORLD_NATURAL_LOGS = get("minecraft:overworld_natural_logs"); + public static final ItemCategory PALE_OAK_LOGS = get("minecraft:pale_oak_logs"); public static final ItemCategory PANDA_FOOD = get("minecraft:panda_food"); public static final ItemCategory PARROT_FOOD = get("minecraft:parrot_food"); public static final ItemCategory PARROT_POISONOUS_FOOD = get("minecraft:parrot_poisonous_food"); @@ -134,7 +136,10 @@ public final class ItemCategories { public static final ItemCategory PIG_FOOD = get("minecraft:pig_food"); 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_PREFERRED_WEAPONS = get("minecraft:piglin_preferred_weapons"); public static final ItemCategory PIGLIN_REPELLENTS = get("minecraft:piglin_repellents"); + public static final ItemCategory PIGLIN_SAFE_ARMOR = get("minecraft:piglin_safe_armor"); + public static final ItemCategory PILLAGER_PREFERRED_WEAPONS = get("minecraft:pillager_preferred_weapons"); public static final ItemCategory PLANKS = get("minecraft:planks"); public static final ItemCategory RABBIT_FOOD = get("minecraft:rabbit_food"); public static final ItemCategory RAILS = get("minecraft:rails"); @@ -144,6 +149,7 @@ public final class ItemCategories { public static final ItemCategory SHEEP_FOOD = get("minecraft:sheep_food"); public static final ItemCategory SHOVELS = get("minecraft:shovels"); public static final ItemCategory SIGNS = get("minecraft:signs"); + public static final ItemCategory SKELETON_PREFERRED_WEAPONS = get("minecraft:skeleton_preferred_weapons"); public static final ItemCategory SKULLS = get("minecraft:skulls"); public static final ItemCategory SLABS = get("minecraft:slabs"); public static final ItemCategory SMALL_FLOWERS = get("minecraft:small_flowers"); @@ -159,12 +165,12 @@ public final class ItemCategories { public static final ItemCategory STRIDER_FOOD = get("minecraft:strider_food"); public static final ItemCategory STRIDER_TEMPT_ITEMS = get("minecraft:strider_tempt_items"); public static final ItemCategory SWORDS = get("minecraft:swords"); - public static final ItemCategory TALL_FLOWERS = get("minecraft:tall_flowers"); + @Deprecated public static final ItemCategory TALL_FLOWERS = get("minecraft:tall_flowers"); public static final ItemCategory TERRACOTTA = get("minecraft:terracotta"); @Deprecated 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"); + @Deprecated public static final ItemCategory TRIM_TEMPLATES = get("minecraft:trim_templates"); public static final ItemCategory TRIMMABLE_ARMOR = get("minecraft:trimmable_armor"); public static final ItemCategory TURTLE_FOOD = get("minecraft:turtle_food"); public static final ItemCategory VILLAGER_PLANTABLE_SEEDS = get("minecraft:villager_plantable_seeds"); diff --git a/worldedit-core/src/main/java/com/sk89q/worldedit/world/item/ItemTypes.java b/worldedit-core/src/main/java/com/sk89q/worldedit/world/item/ItemTypes.java index f3cd6d0ccc..df3f2c66d9 100644 --- a/worldedit-core/src/main/java/com/sk89q/worldedit/world/item/ItemTypes.java +++ b/worldedit-core/src/main/java/com/sk89q/worldedit/world/item/ItemTypes.java @@ -492,6 +492,8 @@ public final class ItemTypes { @Nullable public static final ItemType CHISELED_RED_SANDSTONE = init(); @Nullable + public static final ItemType CHISELED_RESIN_BRICKS = init(); + @Nullable public static final ItemType CHISELED_SANDSTONE = init(); @Nullable public static final ItemType CHISELED_STONE_BRICKS = init(); @@ -512,6 +514,8 @@ public final class ItemTypes { @Nullable public static final ItemType CLOCK = init(); @Nullable + public static final ItemType CLOSED_EYEBLOSSOM = init(); + @Nullable public static final ItemType COAL = init(); @Nullable public static final ItemType COAL_BLOCK = init(); @@ -1696,6 +1700,8 @@ public final class ItemTypes { @Nullable public static final ItemType OMINOUS_TRIAL_KEY = init(); @Nullable + public static final ItemType OPEN_EYEBLOSSOM = init(); + @Nullable public static final ItemType ORANGE_BANNER = init(); @Nullable public static final ItemType ORANGE_BED = init(); @@ -2070,6 +2076,20 @@ public final class ItemTypes { @Nullable public static final ItemType REPEATING_COMMAND_BLOCK = init(); @Nullable + public static final ItemType RESIN_BLOCK = init(); + @Nullable + public static final ItemType RESIN_BRICK = init(); + @Nullable + public static final ItemType RESIN_BRICK_SLAB = init(); + @Nullable + public static final ItemType RESIN_BRICK_STAIRS = init(); + @Nullable + public static final ItemType RESIN_BRICK_WALL = init(); + @Nullable + public static final ItemType RESIN_BRICKS = init(); + @Nullable + public static final ItemType RESIN_CLUMP = init(); + @Nullable public static final ItemType RESPAWN_ANCHOR = init(); @Nullable public static final ItemType RIB_ARMOR_TRIM_SMITHING_TEMPLATE = init();