Skip to content

Commit 4aa10fb

Browse files
Madlykeanurom1504extremeheat
authored
1.21 (#3480)
* add 1.21 to version.js * update readme * added ci step to get correct minecraft data * uses updated prismarine chunk * uses updated prismarine physics * Used fixed pregistry * Add rotation * Back at base pregistry * Update chat.js * update pregistry and ci.yml for mcdata * 1.21.1 * Properly handle data.type in chat.js * update package.json * fishing rod is stronger; make fish area bigger in fishing test * fix internal tests * remove debug install * go back to upstream nmp --------- Co-authored-by: Romain Beaumont <[email protected]> Co-authored-by: extremeheat <[email protected]>
1 parent dd00db4 commit 4aa10fb

File tree

7 files changed

+30
-17
lines changed

7 files changed

+30
-17
lines changed

docs/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ First time using Node.js? You may want to start with the [tutorial](tutorial.md)
1717

1818
## Features
1919

20-
* Supports Minecraft 1.8 to 1.20.5 (1.8, 1.9, 1.10, 1.11, 1.12, 1.13, 1.14, 1.15, 1.16, 1.17, 1.18, 1.19 and 1.20 upto 1.20.6)
20+
* Supports Minecraft 1.8 to 1.21 (1.8, 1.9, 1.10, 1.11, 1.12, 1.13, 1.14, 1.15, 1.16, 1.17, 1.18, 1.19, 1.20, and 1.21)
2121
* Entity knowledge and tracking.
2222
* Block knowledge. You can query the world around you. Milliseconds to find any block.
2323
* Physics and movement - handle all bounding boxes

lib/plugins/chat.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -118,10 +118,11 @@ function inject (bot, options) {
118118
target: data.targetName ? JSON.parse(data.targetName) : undefined,
119119
content: message ? JSON.parse(message) : { text: data.plainMessage }
120120
}
121-
msg = ChatMessage.fromNetwork(data.type, parameters)
121+
const registryIndex = data.type.registryIndex ? data.type.registryIndex : data.type
122+
msg = ChatMessage.fromNetwork(registryIndex, parameters)
122123

123124
if (data.unsignedContent) {
124-
msg.unsigned = ChatMessage.fromNetwork(data.type, { sender: parameters.sender, target: parameters.target, content: JSON.parse(data.unsignedContent) })
125+
msg.unsigned = ChatMessage.fromNetwork(registryIndex, { sender: parameters.sender, target: parameters.target, content: JSON.parse(data.unsignedContent) })
125126
}
126127
} else {
127128
msg = ChatMessage.fromNotch(message)

lib/plugins/inventory.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,8 @@ function inject (bot, { hideErrors }) {
122122
})
123123
} else if (bot.supportFeature('useItemWithOwnPacket')) {
124124
bot._client.write('use_item', {
125-
hand: offHand ? 1 : 0
125+
hand: offHand ? 1 : 0,
126+
rotation: { x: 0, y: 0 }
126127
})
127128
}
128129
}

lib/version.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const testedVersions = ['1.8.8', '1.9.4', '1.10.2', '1.11.2', '1.12.2', '1.13.2', '1.14.4', '1.15.2', '1.16.5', '1.17.1', '1.18.2', '1.19', '1.19.2', '1.19.3', '1.19.4', '1.20.1', '1.20.2', '1.20.4', '1.20.6']
1+
const testedVersions = ['1.8.8', '1.9.4', '1.10.2', '1.11.2', '1.12.2', '1.13.2', '1.14.4', '1.15.2', '1.16.5', '1.17.1', '1.18.2', '1.19', '1.19.2', '1.19.3', '1.19.4', '1.20.1', '1.20.2', '1.20.4', '1.20.6', '1.21.1']
22
module.exports = {
33

44
testedVersions,

package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,17 @@
2222
"license": "MIT",
2323
"dependencies": {
2424
"minecraft-data": "^3.76.0",
25-
"minecraft-protocol": "^1.49.0",
25+
"minecraft-protocol": "^1.50.0",
2626
"prismarine-biome": "^1.1.1",
2727
"prismarine-block": "^1.17.0",
2828
"prismarine-chat": "^1.7.1",
29-
"prismarine-chunk": "^1.34.0",
29+
"prismarine-chunk": "^1.36.0",
3030
"prismarine-entity": "^2.3.0",
3131
"prismarine-item": "^1.15.0",
3232
"prismarine-nbt": "^2.0.0",
33-
"prismarine-physics": "^1.8.0",
33+
"prismarine-physics": "^1.9.0",
3434
"prismarine-recipe": "^1.3.0",
35-
"prismarine-registry": "^1.8.0",
35+
"prismarine-registry": "^1.10.0",
3636
"prismarine-windows": "^2.9.0",
3737
"prismarine-world": "^3.6.0",
3838
"protodef": "1.17.0",
@@ -43,7 +43,7 @@
4343
"@types/node": "^22.1.0",
4444
"doctoc": "^2.0.1",
4545
"minecraft-wrap": "^1.3.0",
46-
"mineflayer": "file:.",
46+
"mineflayer": "file:",
4747
"mocha": "^10.0.0",
4848
"protodef-yaml": "^1.5.3",
4949
"standard": "^17.0.0",

test/externalTests/fishing.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module.exports = () => async (bot) => {
22
const Item = require('prismarine-item')(bot.registry)
33

4-
bot.test.sayEverywhere('/fill ~-5 ~-1 ~-5 ~5 ~-1 ~5 water')
4+
bot.test.sayEverywhere('/fill ~-10 ~-1 ~-10 ~10 ~-1 ~10 water')
55
await bot.test.setInventorySlot(36, new Item(bot.registry.itemsByName.fishing_rod.id, 1, 0))
66
await bot.lookAt(bot.entity.position) // dont force the position
77
bot.fish()

test/internalTest.js

+17-6
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@ for (const supportedVersion of mineflayer.testedVersions) {
5858
// 25565 - local server, 25566 - proxy server
5959
port: 25567
6060
})
61-
console.log('Server Codec', server.registryCodec)
6261
server.on('listening', () => {
6362
bot = mineflayer.createBot({
6463
username: 'player',
@@ -130,7 +129,19 @@ for (const supportedVersion of mineflayer.testedVersions) {
130129
const uuid = 'd3527a0b-bc03-45d5-a878-2aafdd8c8a43' // random
131130
const networkName = chatText('gary')
132131

133-
if (registry.supportFeature('useChatSessions')) {
132+
if (registry.supportFeature('incrementedChatType')) {
133+
client.write('player_chat', {
134+
plainMessage: 'hello',
135+
filterType: 0,
136+
type: { registryIndex: 1 },
137+
networkName,
138+
previousMessages: [],
139+
senderUuid: uuid,
140+
timestamp: Date.now(),
141+
index: 0,
142+
salt: 0n
143+
})
144+
} else if (registry.supportFeature('useChatSessions')) {
134145
client.write('player_chat', {
135146
plainMessage: 'hello',
136147
filterType: 0,
@@ -909,9 +920,9 @@ for (const supportedVersion of mineflayer.testedVersions) {
909920

910921
const zombieId = entities.zombie ? entities.zombie.id : entities.Zombie.id
911922
let bedBlock
912-
if (mineflayer.supportFeature('oneBlockForSeveralVariations', version.majorVersion)) {
923+
if (bot.supportFeature('oneBlockForSeveralVariations', version.majorVersion)) {
913924
bedBlock = blocks.bed
914-
} else if (mineflayer.supportFeature('blockSchemeIsFlat', version.majorVersion)) {
925+
} else if (bot.supportFeature('blockSchemeIsFlat', version.majorVersion)) {
915926
bedBlock = blocks.red_bed
916927
}
917928
const bedId = bedBlock.id
@@ -945,7 +956,7 @@ for (const supportedVersion of mineflayer.testedVersions) {
945956
chunk.setBlockType(beds[bed].foot, bedId)
946957
}
947958

948-
if (mineflayer.supportFeature('blockStateId', version.majorVersion)) {
959+
if (bot.supportFeature('blockStateId', version.majorVersion)) {
949960
chunk.setBlockStateId(beds[0].foot, 3 + bedBlock.minStateId) // { facing: north, occupied: false, part: foot }
950961
chunk.setBlockStateId(beds[0].head, 2 + bedBlock.minStateId) // { facing:north, occupied: false, part: head }
951962

@@ -957,7 +968,7 @@ for (const supportedVersion of mineflayer.testedVersions) {
957968

958969
chunk.setBlockStateId(beds[3].foot, 11 + bedBlock.minStateId) // { facing: west, occupied: false, part: foot }
959970
chunk.setBlockStateId(beds[3].head, 10 + bedBlock.minStateId) // { facing: west, occupied: false, part: head }
960-
} else if (mineflayer.supportFeature('blockMetadata', version.majorVersion)) {
971+
} else if (bot.supportFeature('blockMetadata', version.majorVersion)) {
961972
chunk.setBlockData(beds[0].foot, 2) // { facing: north, occupied: false, part: foot }
962973
chunk.setBlockData(beds[0].head, 10) // { facing:north, occupied: false, part: head }
963974

0 commit comments

Comments
 (0)