mirror of
https://github.com/GeyserMC/Geyser.git
synced 2024-12-22 06:24:59 +01:00
send ServerboundPlayerLoadedPacket, update built-in-tags
This commit is contained in:
parent
be77e6b2bf
commit
d114ab9ad1
3 changed files with 35 additions and 5 deletions
|
@ -56,6 +56,7 @@ public final class BlockTag {
|
|||
public static final Tag<Block> OVERWORLD_NATURAL_LOGS = create("overworld_natural_logs");
|
||||
public static final Tag<Block> LOGS = create("logs");
|
||||
public static final Tag<Block> DARK_OAK_LOGS = create("dark_oak_logs");
|
||||
public static final Tag<Block> PALE_OAK_LOGS = create("pale_oak_logs");
|
||||
public static final Tag<Block> OAK_LOGS = create("oak_logs");
|
||||
public static final Tag<Block> BIRCH_LOGS = create("birch_logs");
|
||||
public static final Tag<Block> ACACIA_LOGS = create("acacia_logs");
|
||||
|
@ -80,8 +81,8 @@ public final class BlockTag {
|
|||
public static final Tag<Block> SMALL_FLOWERS = create("small_flowers");
|
||||
public static final Tag<Block> BEDS = create("beds");
|
||||
public static final Tag<Block> FENCES = create("fences");
|
||||
public static final Tag<Block> TALL_FLOWERS = create("tall_flowers");
|
||||
public static final Tag<Block> FLOWERS = create("flowers");
|
||||
public static final Tag<Block> BEE_ATTRACTIVE = create("bee_attractive");
|
||||
public static final Tag<Block> PIGLIN_REPELLENTS = create("piglin_repellents");
|
||||
public static final Tag<Block> GOLD_ORES = create("gold_ores");
|
||||
public static final Tag<Block> IRON_ORES = create("iron_ores");
|
||||
|
@ -97,6 +98,7 @@ public final class BlockTag {
|
|||
public static final Tag<Block> BADLANDS_TERRACOTTA = create("badlands_terracotta");
|
||||
public static final Tag<Block> CONCRETE_POWDER = create("concrete_powder");
|
||||
public static final Tag<Block> COMPLETES_FIND_TREE_TUTORIAL = create("completes_find_tree_tutorial");
|
||||
public static final Tag<Block> SHULKER_BOXES = create("shulker_boxes");
|
||||
public static final Tag<Block> FLOWER_POTS = create("flower_pots");
|
||||
public static final Tag<Block> ENDERMAN_HOLDABLE = create("enderman_holdable");
|
||||
public static final Tag<Block> ICE = create("ice");
|
||||
|
@ -130,7 +132,6 @@ public final class BlockTag {
|
|||
public static final Tag<Block> WALL_POST_OVERRIDE = create("wall_post_override");
|
||||
public static final Tag<Block> CLIMBABLE = create("climbable");
|
||||
public static final Tag<Block> FALL_DAMAGE_RESETTING = create("fall_damage_resetting");
|
||||
public static final Tag<Block> SHULKER_BOXES = create("shulker_boxes");
|
||||
public static final Tag<Block> HOGLIN_REPELLENTS = create("hoglin_repellents");
|
||||
public static final Tag<Block> SOUL_FIRE_BASE_BLOCKS = create("soul_fire_base_blocks");
|
||||
public static final Tag<Block> STRIDER_WARM_BLOCKS = create("strider_warm_blocks");
|
||||
|
@ -198,6 +199,7 @@ public final class BlockTag {
|
|||
public static final Tag<Block> FOXES_SPAWNABLE_ON = create("foxes_spawnable_on");
|
||||
public static final Tag<Block> WOLVES_SPAWNABLE_ON = create("wolves_spawnable_on");
|
||||
public static final Tag<Block> FROGS_SPAWNABLE_ON = create("frogs_spawnable_on");
|
||||
public static final Tag<Block> BATS_SPAWNABLE_ON = create("bats_spawnable_on");
|
||||
public static final Tag<Block> AZALEA_GROWS_ON = create("azalea_grows_on");
|
||||
public static final Tag<Block> CONVERTABLE_TO_MUD = create("convertable_to_mud");
|
||||
public static final Tag<Block> MANGROVE_LOGS_CAN_GROW_THROUGH = create("mangrove_logs_can_grow_through");
|
||||
|
|
|
@ -53,6 +53,7 @@ public final class ItemTag {
|
|||
public static final Tag<Item> LOGS_THAT_BURN = create("logs_that_burn");
|
||||
public static final Tag<Item> LOGS = create("logs");
|
||||
public static final Tag<Item> DARK_OAK_LOGS = create("dark_oak_logs");
|
||||
public static final Tag<Item> PALE_OAK_LOGS = create("pale_oak_logs");
|
||||
public static final Tag<Item> OAK_LOGS = create("oak_logs");
|
||||
public static final Tag<Item> BIRCH_LOGS = create("birch_logs");
|
||||
public static final Tag<Item> ACACIA_LOGS = create("acacia_logs");
|
||||
|
@ -77,11 +78,13 @@ public final class ItemTag {
|
|||
public static final Tag<Item> SMALL_FLOWERS = create("small_flowers");
|
||||
public static final Tag<Item> BEDS = create("beds");
|
||||
public static final Tag<Item> FENCES = create("fences");
|
||||
public static final Tag<Item> TALL_FLOWERS = create("tall_flowers");
|
||||
public static final Tag<Item> FLOWERS = create("flowers");
|
||||
public static final Tag<Item> PIGLIN_REPELLENTS = create("piglin_repellents");
|
||||
public static final Tag<Item> PIGLIN_LOVED = create("piglin_loved");
|
||||
public static final Tag<Item> IGNORED_BY_PIGLIN_BABIES = create("ignored_by_piglin_babies");
|
||||
public static final Tag<Item> PIGLIN_SAFE_ARMOR = create("piglin_safe_armor");
|
||||
public static final Tag<Item> DUPLICATES_ALLAYS = create("duplicates_allays");
|
||||
public static final Tag<Item> BREWING_FUEL = create("brewing_fuel");
|
||||
public static final Tag<Item> SHULKER_BOXES = create("shulker_boxes");
|
||||
public static final Tag<Item> MEAT = create("meat");
|
||||
public static final Tag<Item> SNIFFER_FOOD = create("sniffer_food");
|
||||
public static final Tag<Item> PIGLIN_FOOD = create("piglin_food");
|
||||
|
@ -103,6 +106,7 @@ public final class ItemTag {
|
|||
public static final Tag<Item> LLAMA_TEMPT_ITEMS = create("llama_tempt_items");
|
||||
public static final Tag<Item> OCELOT_FOOD = create("ocelot_food");
|
||||
public static final Tag<Item> PANDA_FOOD = create("panda_food");
|
||||
public static final Tag<Item> PANDA_EATS_FROM_GROUND = create("panda_eats_from_ground");
|
||||
public static final Tag<Item> PIG_FOOD = create("pig_food");
|
||||
public static final Tag<Item> RABBIT_FOOD = create("rabbit_food");
|
||||
public static final Tag<Item> STRIDER_FOOD = create("strider_food");
|
||||
|
@ -135,7 +139,20 @@ public final class ItemTag {
|
|||
public static final Tag<Item> LECTERN_BOOKS = create("lectern_books");
|
||||
public static final Tag<Item> BOOKSHELF_BOOKS = create("bookshelf_books");
|
||||
public static final Tag<Item> BEACON_PAYMENT_ITEMS = create("beacon_payment_items");
|
||||
public static final Tag<Item> WOODEN_TOOL_MATERIALS = create("wooden_tool_materials");
|
||||
public static final Tag<Item> STONE_TOOL_MATERIALS = create("stone_tool_materials");
|
||||
public static final Tag<Item> IRON_TOOL_MATERIALS = create("iron_tool_materials");
|
||||
public static final Tag<Item> GOLD_TOOL_MATERIALS = create("gold_tool_materials");
|
||||
public static final Tag<Item> DIAMOND_TOOL_MATERIALS = create("diamond_tool_materials");
|
||||
public static final Tag<Item> NETHERITE_TOOL_MATERIALS = create("netherite_tool_materials");
|
||||
public static final Tag<Item> REPAIRS_LEATHER_ARMOR = create("repairs_leather_armor");
|
||||
public static final Tag<Item> REPAIRS_CHAIN_ARMOR = create("repairs_chain_armor");
|
||||
public static final Tag<Item> REPAIRS_IRON_ARMOR = create("repairs_iron_armor");
|
||||
public static final Tag<Item> REPAIRS_GOLD_ARMOR = create("repairs_gold_armor");
|
||||
public static final Tag<Item> REPAIRS_DIAMOND_ARMOR = create("repairs_diamond_armor");
|
||||
public static final Tag<Item> REPAIRS_NETHERITE_ARMOR = create("repairs_netherite_armor");
|
||||
public static final Tag<Item> REPAIRS_TURTLE_HELMET = create("repairs_turtle_helmet");
|
||||
public static final Tag<Item> REPAIRS_WOLF_ARMOR = create("repairs_wolf_armor");
|
||||
public static final Tag<Item> STONE_CRAFTING_MATERIALS = create("stone_crafting_materials");
|
||||
public static final Tag<Item> FREEZE_IMMUNE_WEARABLES = create("freeze_immune_wearables");
|
||||
public static final Tag<Item> DAMPENS_VIBRATIONS = create("dampens_vibrations");
|
||||
|
@ -151,7 +168,6 @@ public final class ItemTag {
|
|||
public static final Tag<Item> SKULLS = create("skulls");
|
||||
public static final Tag<Item> TRIMMABLE_ARMOR = create("trimmable_armor");
|
||||
public static final Tag<Item> TRIM_MATERIALS = create("trim_materials");
|
||||
public static final Tag<Item> TRIM_TEMPLATES = create("trim_templates");
|
||||
public static final Tag<Item> DECORATED_POT_SHERDS = create("decorated_pot_sherds");
|
||||
public static final Tag<Item> DECORATED_POT_INGREDIENTS = create("decorated_pot_ingredients");
|
||||
public static final Tag<Item> SWORDS = create("swords");
|
||||
|
@ -161,7 +177,15 @@ public final class ItemTag {
|
|||
public static final Tag<Item> SHOVELS = create("shovels");
|
||||
public static final Tag<Item> BREAKS_DECORATED_POTS = create("breaks_decorated_pots");
|
||||
public static final Tag<Item> VILLAGER_PLANTABLE_SEEDS = create("villager_plantable_seeds");
|
||||
public static final Tag<Item> VILLAGER_PICKS_UP = create("villager_picks_up");
|
||||
public static final Tag<Item> DYEABLE = create("dyeable");
|
||||
public static final Tag<Item> FURNACE_MINECART_FUEL = create("furnace_minecart_fuel");
|
||||
public static final Tag<Item> BUNDLES = create("bundles");
|
||||
public static final Tag<Item> SKELETON_PREFERRED_WEAPONS = create("skeleton_preferred_weapons");
|
||||
public static final Tag<Item> DROWNED_PREFERRED_WEAPONS = create("drowned_preferred_weapons");
|
||||
public static final Tag<Item> PIGLIN_PREFERRED_WEAPONS = create("piglin_preferred_weapons");
|
||||
public static final Tag<Item> PILLAGER_PREFERRED_WEAPONS = create("pillager_preferred_weapons");
|
||||
public static final Tag<Item> WITHER_SKELETON_DISLIKED_WEAPONS = create("wither_skeleton_disliked_weapons");
|
||||
public static final Tag<Item> ENCHANTABLE_FOOT_ARMOR = create("enchantable/foot_armor");
|
||||
public static final Tag<Item> ENCHANTABLE_LEG_ARMOR = create("enchantable/leg_armor");
|
||||
public static final Tag<Item> ENCHANTABLE_CHEST_ARMOR = create("enchantable/chest_armor");
|
||||
|
@ -181,6 +205,8 @@ public final class ItemTag {
|
|||
public static final Tag<Item> ENCHANTABLE_CROSSBOW = create("enchantable/crossbow");
|
||||
public static final Tag<Item> ENCHANTABLE_VANISHING = create("enchantable/vanishing");
|
||||
public static final Tag<Item> ENCHANTABLE_MACE = create("enchantable/mace");
|
||||
public static final Tag<Item> MAP_INVISIBILITY_EQUIPMENT = create("map_invisibility_equipment");
|
||||
public static final Tag<Item> GAZE_DISGUISE_EQUIPMENT = create("gaze_disguise_equipment");
|
||||
|
||||
private ItemTag() {}
|
||||
|
||||
|
|
|
@ -34,6 +34,7 @@ import org.geysermc.geyser.translator.protocol.PacketTranslator;
|
|||
import org.geysermc.geyser.translator.protocol.Translator;
|
||||
import org.geysermc.geyser.util.InventoryUtils;
|
||||
import org.geysermc.geyser.util.LoginEncryptionUtils;
|
||||
import org.geysermc.mcprotocollib.protocol.packet.ingame.serverbound.ServerboundPlayerLoadedPacket;
|
||||
|
||||
@Translator(packet = SetLocalPlayerAsInitializedPacket.class)
|
||||
public class BedrockSetLocalPlayerAsInitializedTranslator extends PacketTranslator<SetLocalPlayerAsInitializedPacket> {
|
||||
|
@ -72,6 +73,7 @@ public class BedrockSetLocalPlayerAsInitializedTranslator extends PacketTranslat
|
|||
session.getFormCache().resendAllForms();
|
||||
|
||||
GeyserImpl.getInstance().eventBus().fire(new SessionJoinEvent(session));
|
||||
session.sendDownstreamGamePacket(ServerboundPlayerLoadedPacket.INSTANCE);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue