[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:
  • Hardware:
    • CPU: i7-7700K
    • RAM: 32GB @ 2400 MHz
    • GPU: GeForce GTX 1080 Ti
      • Driver version: 419.67
      • VRAM: 11GB
  • OS:
    • Name: Windows 10 Home x64
    • Version: 1903
    • OS build: 18362.356
  • Java:
    • java version "1.8.0_181"

Attachments: File BookConfigTest.jar     Java Source File Main.java     File config.yml    
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 events

This occurs on:

  • Spigot 1.14.4
  • CraftBukkit 1.14.4

And is not applicable to:

  • Vanilla

Not tested:

  • Spigot 1.14.3 and earlier

What happens

When 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 file

item:   ==: 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

  1. Place the BookConfigTest.jar in your plugins folder
  2. Run this command from the console to get an example book
    minecraft:give @p written_book{pages:["[\"\",{\"text\":\"test click\",\"clickEvent\":{\"action\":\"run_command\",\"value\":\"/say test command\"}},\"\\n\",{\"text\":\"test hover\",\"hoverEvent\":{\"action\":\"show_text\",\"value\":\"hover text\"}},\"\\n\",{\"text\":\"test combined\",\"clickEvent\":{\"action\":\"change_page\",\"value\":2},\"hoverEvent\":{\"action\":\"show_text\",\"value\":\"go to page 2\"}}]","{\"text\":\"this is page 2\"}"],title:"Test Book",author:"Test Author",display:{Lore:["This is a test book"]}}
  3. Hold the given book in your main hand
  4. Execute the following commands from the player holding the book
    1. /dotest set
    2. /dotest reload
    • (reloading needed because the correct item is cached otherwise)
  5. When you execute /dotest get you will get a book that has the same name, author, generation and formatting but the hover and click events are gone.


 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

Generated at Thu Apr 03 16:14:36 UTC 2025 using Jira 10.3.3#10030003-sha1:d220e3fefc8dfc6d47f522d3b9a20c1455e12b7b.