Skip to content

Commit

Permalink
fix build failing, by making nether pathfinder version consistent
Browse files Browse the repository at this point in the history
  • Loading branch information
wagyourtail committed Jan 23, 2024
1 parent be1203f commit 078b390
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ allprojects {
// The following line declares the yarn mappings you may select this one as well.
// mappings "net.fabricmc:yarn:1.17.1+build.32:v2"
//launchImplementation('dev.babbaj:nether-pathfinder:1.3.0')
implementation 'dev.babbaj:nether-pathfinder:1.4.1'
implementation "dev.babbaj:nether-pathfinder:${project.nether_pathfinder_version}"
}

unimined.minecraft(sourceSets.main, true) {
Expand Down
2 changes: 1 addition & 1 deletion fabric/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ dependencies {
common sourceSet.output
shadowCommon sourceSet.output
}
include 'dev.babbaj:nether-pathfinder:1.3.0'
include "dev.babbaj:nether-pathfinder:${project.nether_pathfinder_version}"
}

processResources {
Expand Down
2 changes: 1 addition & 1 deletion forge/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ dependencies {
common sourceSet.output
shadowCommon sourceSet.output
}
shadowCommon 'dev.babbaj:nether-pathfinder:1.3.0'
shadowCommon "dev.babbaj:nether-pathfinder:${project.nether_pathfinder_version}"
}

processResources {
Expand Down
2 changes: 2 additions & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,5 @@ archives_base_name=baritone
minecraft_version=1.19.4
forge_version=45.0.43
fabric_version=0.14.11

nether_pathfinder_version=1.4.1

0 comments on commit 078b390

Please sign in to comment.