Skip to content

Commit 385fba6

Browse files
lkwilsonextremeheatrom1504
authored
Use node-minecraft-protocol for chat (#3110)
* Send previous msgs * Use node-minecraft-protocol for command parsing * Leave all chat handling to nmp * Don't split command without header * point minecraft-protocol dep to fork * Update package.json --------- Co-authored-by: extremeheat <[email protected]> Co-authored-by: Romain Beaumont <[email protected]>
1 parent 131a7ea commit 385fba6

File tree

2 files changed

+5
-19
lines changed

2 files changed

+5
-19
lines changed

lib/plugins/chat.js

+4-18
Original file line numberDiff line numberDiff line change
@@ -147,24 +147,10 @@ function inject (bot, options) {
147147
throw new Error('Incorrect type! Should be a string or number.')
148148
}
149149

150-
if (bot.supportFeature('signedChat')) {
151-
if (message.startsWith('/')) {
152-
// We send commands as Chat Command packet in 1.19+
153-
const command = message.slice(1)
154-
const timestamp = BigInt(Date.now())
155-
bot._client.write('chat_command', {
156-
command,
157-
timestamp,
158-
salt: 0n,
159-
argumentSignatures: [],
160-
signedPreview: false,
161-
messageCount: 0,
162-
acknowledged: Buffer.alloc(3),
163-
// 1.19.2 Chat Command packet also includes an array of last seen messages
164-
previousMessages: []
165-
})
166-
return
167-
}
150+
if (!header && message.startsWith('/')) {
151+
// Do not try and split a command without a header
152+
bot._client.chat(message)
153+
return
168154
}
169155

170156
const lengthLimit = CHAT_LENGTH_LIMIT - header.length

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"license": "MIT",
2323
"dependencies": {
2424
"minecraft-data": "^3.37.0",
25-
"minecraft-protocol": "^1.43.1",
25+
"minecraft-protocol": "^1.44.0",
2626
"prismarine-biome": "^1.1.1",
2727
"prismarine-block": "^1.17.0",
2828
"prismarine-chat": "^1.7.1",

0 commit comments

Comments
 (0)