mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-04 22:14:40 +01:00
SPIGOT-4816: Editing book causes glitchy behaviour
This commit is contained in:
parent
d7d28b1244
commit
9926d780c4
1 changed files with 1 additions and 1 deletions
|
@ -128,7 +128,7 @@ public class CraftMetaBook extends CraftMetaItem implements BookMeta {
|
||||||
if (hasPages()) {
|
if (hasPages()) {
|
||||||
NBTTagList list = new NBTTagList();
|
NBTTagList list = new NBTTagList();
|
||||||
for (IChatBaseComponent page : pages) {
|
for (IChatBaseComponent page : pages) {
|
||||||
list.add(new NBTTagString(CraftChatMessage.fromComponent(page)));
|
list.add(new NBTTagString(page == null ? "" : page.getString()));
|
||||||
}
|
}
|
||||||
itemData.set(BOOK_PAGES.NBT, list);
|
itemData.set(BOOK_PAGES.NBT, list);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue