[SPIGOT-5350] BookMeta is not serialized correctly Created: 01/Oct/19 Updated: 31/Dec/20 Resolved: 31/Dec/20 |
|
Status: | Resolved |
Project: | Spigot |
Component/s: | None |
Affects Version/s: | None |
Fix Version/s: | None |
Type: | Bug | Priority: | Minor |
Reporter: | Oskar N | Assignee: | Unassigned |
Resolution: | Fixed | Votes: | 4 |
Labels: | 1.14, Craftbukkit, Spigot, bug, spigot | ||
Environment: |
|
Attachments: |
![]() ![]() ![]() |
Version: | This server is running CraftBukkit version git-Spigot-94af569-a3fdef8 (MC: 1.14.4) (Implementing API version 1.14.4-R0.1-SNAPSHOT) |
Plugin: | BookConfigTest |
Guidelines Read: | Yes |
Description |
Serializing BookMeta removes hover and click eventsThis occurs on:
And is not applicable to:
Not tested:
What happensWhen you save an ItemStack of a book in a config the BookMeta does not get correctly serialized and removes hover and click events. This is because CraftMetaBook#serialize() calls CraftChatMessage.fromComponent(IChatBaseComponent) which only returns a String containing the textual content and formatting. Produced config fileitem: ==: org.bukkit.inventory.ItemStack v: 1976 type: WRITTEN_BOOK meta: ==: ItemMeta meta-type: BOOK_SIGNED title: Test Book author: Test Author pages: - |- test click§0 §0test hover§0 §0test combined - this is page 2 Steps to reproduce
|
Comments |
Comment by blablubbabc [ 14/Dec/19 ] |
Also affects book items created regulary in vanilla minecraft, see for example: https://prnt.sc/qautz8 Probably relates to https://hub.spigotmc.org/jira/browse/SPIGOT-3206 Maybe a solution could be to serialize the book contents in minecraft's text component format and then parse it from this representation when reading the data again. This would allow the serialized item to still be human-readable, while persisting the exact internal text representation (as long as the text isn't changed by any plugin via the API). This possible solution could also apply to https://hub.spigotmc.org/jira/browse/SPIGOT-5063 |