Skip to content

Commit

Permalink
fix create until version
Browse files Browse the repository at this point in the history
  • Loading branch information
MrStickyPiston committed Dec 24, 2024
1 parent 0221a21 commit d5e79d7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions fabric/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ processResources {
"fabric_loader_version", fabric_loader_version,
"fabric_api_version", fabric_api_version,
"minecraft_version", minecraft_version,
"create_until_version": create_until_version,
"create_version", create_fabric_version // on fabric, use the entire version, unlike forge
)
properties.forEach((k, v) -> inputs.property(k, v))
Expand Down
1 change: 1 addition & 0 deletions forge/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ processResources {
"version", version,
"forge_version", forge_version.split("\\.")[0], // only specify major version of forge
"minecraft_version", minecraft_version,
"create_until_version": create_until_version,
"create_version", create_forge_version.split("-")[0] // cut off build number
)
properties.forEach((k, v) -> inputs.property(k, v))
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit d5e79d7

Please sign in to comment.