remove 1.21.90 in ci

This commit is contained in:
extremeheat 2025-06-18 23:56:42 +00:00
commit 0671fcaf4c
2 changed files with 1 additions and 2 deletions

View file

@ -33,5 +33,4 @@ jobs:
wget http://archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1f-1ubuntu2_amd64.deb
sudo dpkg -i libssl1.1_1.1.1f-1ubuntu2_amd64.deb
- run: npm install
- run: cd node_modules/minecraft-data && rm -fr minecraft-data && git clone https://github.com/CreeperG16/minecraft-data --depth 1 -b master && node ./bin/generate_data.js
- run: npm test

View file

@ -3,7 +3,7 @@ const mcData = require('minecraft-data')
// Minimum supported version (< will be kicked)
const MIN_VERSION = '1.16.201'
// Currently supported verson. Note, clients with newer versions can still connect as long as data is in minecraft-data
const CURRENT_VERSION = '1.21.90'
const CURRENT_VERSION = '1.21.80'
const Versions = Object.fromEntries(mcData.versions.bedrock.filter(e => e.releaseType === 'release').map(e => [e.minecraftVersion, e.version]))