From b9e86c5435f90f902b6487eab2e4a72b3a5039c7 Mon Sep 17 00:00:00 2001 From: Philipp Date: Sun, 11 Feb 2024 15:12:40 +0100 Subject: [PATCH] rem: debug --- .github/workflows/gradle.yml | 2 +- build.gradle | 6 +++--- changelog.md | 5 +++++ .../tcredstone/tile/TileRedstoneMultiEmitter.java | 2 -- 4 files changed, 9 insertions(+), 6 deletions(-) diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index ddc6093..dd80175 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/build.gradle b/build.gradle index 4c665ad..2bccb49 100644 --- a/build.gradle +++ b/build.gradle @@ -44,12 +44,12 @@ if(ver == null) ver = "dev" version = ver group = 'com.troblecodings' -archivesBaseName = 'TC-Redstone-1.20.1' +archivesBaseName = 'TC-Redstone-1.20.4' java.toolchain.languageVersion = JavaLanguageVersion.of(17) minecraft { - mappings channel: 'official', version: '1.20.1' + mappings channel: 'official', version: '1.20.4' runs { client { @@ -83,7 +83,7 @@ repositories { } dependencies { - minecraft 'net.minecraftforge:forge:1.20.4-49.0.12' + minecraft 'net.minecraftforge:forge:1.20.4-49.0.27' } jar { diff --git a/changelog.md b/changelog.md index d1fc535..a24431e 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,10 @@ # Changelog +## [1.20.4 - 3.2.2] + +* port 1.20.4 +* rem: debug output + ## [1.20.1-3.2.1] * added multi linking tool diff --git a/src/main/java/com/troblecodings/tcredstone/tile/TileRedstoneMultiEmitter.java b/src/main/java/com/troblecodings/tcredstone/tile/TileRedstoneMultiEmitter.java index a3e839a..0058fc4 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 CompoundTag writeBlockPosToNBT(final List pos, final CompoundTa list.add(item); }); compound.put(LINKED_POS_LIST, list); - System.out.println("List: " + listOfPositions); - System.out.println("Comp: " + compound); } return compound; }