SPIGOT-298: Fix book serialization
This commit is contained in:
parent
306b233a40
commit
d51936efb4
@ -316,7 +316,11 @@ class CraftMetaBook extends CraftMetaItem implements BookMeta {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (hasPages()) {
|
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) {
|
if (generation != null) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user