From e62592ad7a9ec6d96dbdb37f1d808d40048d90ac Mon Sep 17 00:00:00 2001 From: SuperGamerTron Date: Fri, 20 Feb 2026 04:39:28 -0700 Subject: [PATCH 1/2] Add vec3i16 type to packetTest.js --- test/packetTest.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/packetTest.js b/test/packetTest.js index d4074f66..a5d7e918 100644 --- a/test/packetTest.js +++ b/test/packetTest.js @@ -232,6 +232,9 @@ const values = { vec3i: { x: 0, y: 0, z: 0 }, + vec3i16: { + x: 0, y: 0, z: 0 + }, count: 1, // TODO : might want to set this to a correct value bool: true, f64: 99999.2222, From 3e2d4bc0022f4c869711179210c01445e82641ed Mon Sep 17 00:00:00 2001 From: SuperGamerTron Date: Fri, 20 Feb 2026 06:31:07 -0700 Subject: [PATCH 2/2] Update ci.yml --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 408636fc..66a22f08 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -55,5 +55,6 @@ jobs: distribution: 'adopt' - name: Install dependencies run: npm install + - run: cd node_modules && cd minecraft-data && mv minecraft-data minecraft-data-old && git clone -b consistent-velocity https://github.com/SuperGamerTron/minecraft-data --depth 1 && node bin/generate_data.js - name: Run tests run: npm run mochaTest -- -g ${{ matrix.mcVersion }}v