File tree 2 files changed +5
-19
lines changed
2 files changed +5
-19
lines changed Original file line number Diff line number Diff line change @@ -147,24 +147,10 @@ function inject (bot, options) {
147
147
throw new Error ( 'Incorrect type! Should be a string or number.' )
148
148
}
149
149
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
168
154
}
169
155
170
156
const lengthLimit = CHAT_LENGTH_LIMIT - header . length
Original file line number Diff line number Diff line change 22
22
"license" : " MIT" ,
23
23
"dependencies" : {
24
24
"minecraft-data" : " ^3.37.0" ,
25
- "minecraft-protocol" : " ^1.43.1 " ,
25
+ "minecraft-protocol" : " ^1.44.0 " ,
26
26
"prismarine-biome" : " ^1.1.1" ,
27
27
"prismarine-block" : " ^1.17.0" ,
28
28
"prismarine-chat" : " ^1.7.1" ,
You can’t perform that action at this time.
0 commit comments