From e62592ad7a9ec6d96dbdb37f1d808d40048d90ac Mon Sep 17 00:00:00 2001 From: SuperGamerTron Date: Fri, 20 Feb 2026 04:39:28 -0700 Subject: [PATCH 1/3] 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/3] 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 From e7c6eeb7bf2c6b583da1a8550fb800335922fac6 Mon Sep 17 00:00:00 2001 From: extremeheat Date: Wed, 25 Mar 2026 12:49:31 -0400 Subject: [PATCH 3/3] Update ci.yml Removed outdated command to clone minecraft-data repository. --- .github/workflows/ci.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 66a22f08..408636fc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -55,6 +55,5 @@ 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