Skip to content

Commit

Permalink
Merge pull request #353 from MrTroble/fix/1.20
Browse files Browse the repository at this point in the history
rem: debug 1.20.4
  • Loading branch information
Jeronimo97 authored Feb 11, 2024
2 parents bfc81c8 + b9e86c5 commit 9fc51e9
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down Expand Up @@ -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 {
Expand Down
5 changes: 5 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,6 @@ public CompoundTag writeBlockPosToNBT(final List<BlockPos> pos, final CompoundTa
list.add(item);
});
compound.put(LINKED_POS_LIST, list);
System.out.println("List: " + listOfPositions);
System.out.println("Comp: " + compound);
}
return compound;
}
Expand Down

0 comments on commit 9fc51e9

Please sign in to comment.