mirror of
https://github.com/PaperMC/Paper.git
synced 2025-04-04 05:21:01 +02:00
Don't ignore result of PlayerEditBookEvent
This commit is contained in:
parent
f2e70c48f9
commit
273355e28c
1 changed files with 1 additions and 1 deletions
|
@ -599,7 +599,7 @@
|
|||
List<Filterable<String>> list1 = pages.stream().map(this::filterableFromOutgoing).toList();
|
||||
|
||||
itemstack.set(DataComponents.WRITABLE_BOOK_CONTENT, new WritableBookContent(list1));
|
||||
+ CraftEventFactory.handleEditBookEvent(this.player, slotId, handItem, itemstack); // CraftBukkit
|
||||
+ this.player.getInventory().setItem(slotId, CraftEventFactory.handleEditBookEvent(this.player, slotId, handItem, itemstack)); // CraftBukkit // Paper - Don't ignore result (see other callsite for handleEditBookEvent)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue