diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index ad1033e..196697a 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -30,7 +30,7 @@ jobs: if: endswith(github.ref_name, 'master') && github.ref_protected && github.ref_type == 'branch' runs-on: ubuntu-latest env: - APPVEYOR_BUILD_VERSION: '3.2.1' + APPVEYOR_BUILD_VERSION: '3.2.2' CURSETOKEN: ${{ secrets.CURSETOKEN }} steps: - uses: actions/checkout@v3 diff --git a/changelog.md b/changelog.md index f845a1b..387cb26 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,9 @@ # Changelog +## [1.16.5 - 3.2.2] + +* rem: debug output + ## [1.16.5 - 3.2.1] * feat: added multilinking tool diff --git a/src/main/java/com/troblecodings/tcredstone/tile/TileRedstoneMultiEmitter.java b/src/main/java/com/troblecodings/tcredstone/tile/TileRedstoneMultiEmitter.java index e78a93f..d0a617e 100644 --- a/src/main/java/com/troblecodings/tcredstone/tile/TileRedstoneMultiEmitter.java +++ b/src/main/java/com/troblecodings/tcredstone/tile/TileRedstoneMultiEmitter.java @@ -34,8 +34,6 @@ public CompoundNBT writeBlockPosToNBT(final List pos, final CompoundNB list.add(item); }); compound.put(LINKED_POS_LIST, list); - System.out.println("List: " + listOfPositions); - System.out.println("Comp: " + compound); } return compound; }