Open KabanFriends opened 1 week ago
When showing a lectern GUI of a lectern that does not exist in the world, bedrock players don't see the book text.
Inventory inv = Bukkit.createInventory(null, InventoryType.LECTERN); ItemStack book = new ItemStack(Material.WRITTEN_BOOK); BookMeta bookMeta = (BookMeta) book.getItemMeta(); bookMeta.addPage("Example Page Text"); bookMeta.setTitle("Example Title"); bookMeta.setAuthor("Sigong"); book.setItemMeta(bookMeta); inv.setItem(0, book); player.openInventory(inv);
Bedrock players can see the text "Example Page Text" correctly
No response
https://dump.geysermc.org/HlvLXuJ81Kd6Eb3zHAMo0pnpjT0Vxs0Z
2.5.0-b711 (git-master-4598ffe)
1.21.41, Windows 11
This is the plugin I quickly wrote to reproduce the bug: TestPlugin.zip Type /books in chat to see the virtual lectern GUI.
Describe the bug
When showing a lectern GUI of a lectern that does not exist in the world, bedrock players don't see the book text.
To Reproduce
Expected behaviour
Bedrock players can see the text "Example Page Text" correctly
Screenshots / Videos
Server Version and Plugins
No response
Geyser Dump
https://dump.geysermc.org/HlvLXuJ81Kd6Eb3zHAMo0pnpjT0Vxs0Z
Geyser Version
2.5.0-b711 (git-master-4598ffe)
Minecraft: Bedrock Edition Device/Version
1.21.41, Windows 11
Additional Context
This is the plugin I quickly wrote to reproduce the bug: TestPlugin.zip Type /books in chat to see the virtual lectern GUI.