mirror of
https://github.com/PaperMC/Paper.git
synced 2025-03-13 11:18:23 +01:00
SPIGOT-298: Fix book serialization
This commit is contained in:
parent
306b233a40
commit
d51936efb4
1 changed files with 5 additions and 1 deletions
|
@ -316,7 +316,11 @@ class CraftMetaBook extends CraftMetaItem implements BookMeta {
|
|||
}
|
||||
|
||||
if (hasPages()) {
|
||||
builder.put(BOOK_PAGES.BUKKIT, pages);
|
||||
List<String> pagesString = new ArrayList<String>();
|
||||
for (IChatBaseComponent comp : pages) {
|
||||
pagesString.add(CraftChatMessage.fromComponent(comp));
|
||||
}
|
||||
builder.put(BOOK_PAGES.BUKKIT, pagesString);
|
||||
}
|
||||
|
||||
if (generation != null) {
|
||||
|
|
Loading…
Add table
Reference in a new issue