Skip to content

Commit 02245a4

Browse files
extremeheatrom1504
andauthored
1.21.3 (#670)
* 1.21.3 * Update package.json --------- Co-authored-by: Romain Beaumont <[email protected]>
1 parent 529d5a1 commit 02245a4

File tree

5 files changed

+7
-4
lines changed

5 files changed

+7
-4
lines changed

config/default-settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,5 @@
2525
},
2626
"everybody-op": false,
2727
"max-entities":100,
28-
"version": "1.21.1"
28+
"version": "1.21.3"
2929
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
"expect": "^29.1.2",
6767
"flying-squid": "file:.",
6868
"minecraft-wrap": "^1.2.3",
69-
"mineflayer": "^4.17.0",
69+
"mineflayer": "^4.24.0",
7070
"mocha": "^11.0.1",
7171
"standard": "^17.0.0"
7272
}

src/lib/plugins/login.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ module.exports.server = function (serv, options) {
1010
client.on('state', (now) => {
1111
if (now === 'configuration') {
1212
client.write('feature_flags', { features: ['minecraft:vanilla'] })
13-
client.write('select_known_packs', { packs: [] })
13+
// Should this be put into loginPacket.json.. or figure out how to generate it inside flying-squid/what parts we really need
14+
// to send.
15+
client.write('tags', require('./loginTags.json'))
1416
}
1517
})
1618
})

src/lib/plugins/loginTags.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

src/lib/version.js

Lines changed: 1 addition & 1 deletion
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', '1.18.2', '1.19', '1.19.2', '1.19.3', '1.19.4', '1.20', '1.20.2', '1.20.3', '1.20.5', '1.21.1']
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', '1.18.2', '1.19', '1.19.2', '1.19.3', '1.19.4', '1.20', '1.20.2', '1.20.3', '1.20.5', '1.21.1', '1.21.3']
22
module.exports = {
33
testedVersions,
44
latestSupportedVersion: testedVersions[testedVersions.length - 1],

0 commit comments

Comments
 (0)