I am currently trying to implement tinkers' construct integration to my mod, and everything is working however datagen can't seem to be able to pull resources from the TIC library, these are my data settings in build.gradle
data {
workingDirectory project.file('run')
property 'forge.logging.markers', 'REGISTRIES'
property 'forge.logging.console.level', 'debug'
// Specify the modid for data generation, where to output the resulting resource, and where to look for existing resources.
args '--mod', 'kuzey', '--all', '--output', file('src/generated/resources/'), '--existing', file('src/main/resources/'), '--existing-mod', 'tconstruct'
mods {
kuzey {
source sourceSets.main
}
}
}
}