Skip to content

Commit eb9982a

Browse files
Added support for 1.18+ edit book packet #3204 (#3373)
* Added support for new edit book packet (#3204) * Ran linter * Pass the slot to editBook * Change slot to different parameter to work with old hand value * Update book.js use new feature --------- Co-authored-by: extremeheat <[email protected]>
1 parent d581ea7 commit eb9982a

File tree

1 file changed

+18
-8
lines changed

1 file changed

+18
-8
lines changed

lib/plugins/book.js

+18-8
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,27 @@ function inject (bot) {
1010
if (bot.supportFeature('editBookIsPluginChannel')) {
1111
bot._client.registerChannel('MC|BEdit', 'slot')
1212
bot._client.registerChannel('MC|BSign', 'slot')
13-
editBook = (book, signing = false) => {
13+
editBook = (book, pages, title, slot, signing = false) => {
1414
if (signing) bot._client.writeChannel('MC|BSign', Item.toNotch(book))
1515
else bot._client.writeChannel('MC|BEdit', Item.toNotch(book))
1616
}
1717
} else if (bot.supportFeature('hasEditBookPacket')) {
18-
editBook = (book, signing = false, hand = 0) => {
19-
bot._client.write('edit_book', {
20-
new_book: Item.toNotch(book),
21-
signing,
22-
hand
23-
})
18+
if (bot.supportFeature('editBookPacketUsesNbt')) { // 1.13 - 1.17
19+
editBook = (book, pages, title, slot, signing = false, hand = 0) => {
20+
bot._client.write('edit_book', {
21+
hand: slot,
22+
pages,
23+
title
24+
})
25+
}
26+
} else { // 1.18+
27+
editBook = (book, pages, title, slot, signing = false, hand = 0) => {
28+
bot._client.write('edit_book', {
29+
new_book: Item.toNotch(book),
30+
signing,
31+
hand
32+
})
33+
}
2434
}
2535
}
2636

@@ -38,7 +48,7 @@ function inject (bot) {
3848
bot.setQuickBarSlot(moveToQuickBar ? 0 : slot - 36)
3949

4050
const modifiedBook = await modifyBook(moveToQuickBar ? 36 : slot, pages, author, title, signing)
41-
editBook(modifiedBook, signing)
51+
editBook(modifiedBook, pages, title, moveToQuickBar ? 0 : slot - 36, signing)
4252
await once(bot.inventory, `updateSlot:${moveToQuickBar ? 36 : slot}`)
4353

4454
bot.setQuickBarSlot(quickBarSlot)

0 commit comments

Comments
 (0)