This commit is contained in:
Srendi 2022-08-30 13:37:15 +02:00
parent f6acd38cba
commit 0a5688ebf7
6 changed files with 13 additions and 10 deletions

View file

@ -17,7 +17,7 @@ archivesBaseName = 'cctutorial'
java.toolchain.languageVersion = JavaLanguageVersion.of(17)
minecraft {
mappings channel: 'official', version: '1.18.2'
mappings channel: 'official', version: "${mc_version}"
runs {
client {
@ -88,9 +88,9 @@ dependencies {
// Specify the version of Minecraft to use, If this is any group other then 'net.minecraft' it is assumed
// that the dep is a ForgeGradle 'patcher' dependency. And it's patches will be applied.
// The userdev artifact is a special name and will get all sorts of transformations applied to it.
minecraft 'net.minecraftforge:forge:1.18.2-40.0.40'
minecraft "net.minecraftforge:forge:${mc_version}-${forge_version}"
implementation fg.deobf("org.squiddev:cc-tweaked-1.18.2:${cc_version}")
implementation fg.deobf("org.squiddev:cc-tweaked-1.19.1:${cc_version}")
}