Skip to content

Commit

Permalink
1.21.2
Browse files Browse the repository at this point in the history
  • Loading branch information
samolego committed Oct 23, 2024
1 parent 1842575 commit f993684
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
9 changes: 7 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ dependencies {
modImplementation(include('me.lucko:fabric-permissions-api:0.3.1'))

// Carpet
modImplementation("carpet:fabric-carpet:1.21.2-pre3-${project.carpet_core_version}")
modImplementation("carpet:fabric-carpet:${project.carpet_core_version}")
//modCompileOnly('com.github.samolego.Taterzens:taterzens-fabric:1.11.6')
}

Expand Down Expand Up @@ -105,7 +105,12 @@ curseforge {
id = "390114"
changelog = "A changelog can be found at https://github.com/samolego/FabricTailor/releases/latest"
releaseType = "release"
addGameVersion "${project.minecraft_version}"
if (project.minecraft_version.contains("-")) {
// yuck
addGameVersion "${project.minecraft_version.split("-")[0]}-Snaspshot"
} else {
addGameVersion "${project.minecraft_version}"
}
addGameVersion "Fabric"

mainArtifact(file("${project.buildDir}/libs/${archivesBaseName}-${version}.jar")) {
Expand Down
11 changes: 5 additions & 6 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
# Done to increase the memory available to gradle.
org.gradle.jvmargs=-Xmx1G
# Fabric Properties
minecraft_version=1.21.2-pre5
yarn_mappings=1.21.2-pre5+build.2
minecraft_version=1.21.2
yarn_mappings=1.21.2+build.1
loader_version=0.16.7

# Fabric API
fabric_version=0.106.0+1.21.2

fabric_version=0.106.1+1.21.2
# Mod Properties
mod_version=2.5.1
mod_version=2.5.2
maven_group=org.samo_lego
archives_base_name=fabrictailor
# Dependencies
c2b_lib_version=2.0.0
carpet_core_version=1.4.157+v241014
carpet_core_version=1.21.2-pre3-1.4.157+v241014

0 comments on commit f993684

Please sign in to comment.