140b1f9111
- Fixed paxel recipe: now requires 1 pickaxe + 2 sticks (instead of 3 pickaxes) - Fixed silk touch on Concentrated Diamond Ore: now drops vanilla diamond_ore - Fixed Copper High Ore sound: changed from GRAVEL to STONE 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
55 lines
1.2 KiB
Groovy
55 lines
1.2 KiB
Groovy
plugins {
|
|
id 'eclipse'
|
|
id 'net.minecraftforge.gradle' version '[6.0.16,6.2)'
|
|
}
|
|
|
|
version = '2.1.6'
|
|
group = 'com.aulyrius.custom_ore_gen'
|
|
archivesBaseName = 'custom_ore_gen'
|
|
|
|
java.toolchain.languageVersion = JavaLanguageVersion.of(17)
|
|
|
|
minecraft {
|
|
mappings channel: 'official', version: '1.20.1'
|
|
|
|
accessTransformer = file('src/main/resources/META-INF/accesstransformer.cfg')
|
|
|
|
copyIdeResources = true
|
|
|
|
runs {
|
|
client {
|
|
def mcreatorJvmOptions = System.getenv('MCREATOR_JVM_OPTIONS')
|
|
if (mcreatorJvmOptions) {
|
|
jvmArgs += mcreatorJvmOptions.split("\\s+").findAll { it.trim() }.toList()
|
|
}
|
|
}
|
|
|
|
server {
|
|
}
|
|
|
|
configureEach {
|
|
workingDirectory project.file('run')
|
|
|
|
property 'forge.logging.markers', 'REGISTRIES'
|
|
property 'forge.logging.console.level', 'debug'
|
|
|
|
mods {
|
|
examplemod {
|
|
source sourceSets.main
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
minecraft 'net.minecraftforge:forge:1.20.1-47.3.0'
|
|
}
|
|
|
|
tasks.withType(JavaCompile).configureEach {
|
|
options.encoding = 'UTF-8' // Use the UTF-8 charset for Java compilation
|
|
}
|
|
|
|
apply from: 'mcreator.gradle'
|
|
|