Fixed data args.

This commit is contained in:
2021-11-20 19:50:33 +00:00
parent 34e5d50e50
commit e83690dbaa

View File

@ -98,7 +98,10 @@ minecraft {
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', 'loginprotection', '--all', '--output', file('src/generated/resources/'), '--existing', file('src/main/resources/')
args '--mod', 'loginprotection', '--all',
'--existing', file('src/main/resources').toString(),
'--existing', file('src/generated/resources').toString(),
'--output', file('src/generated/resources/')
mods {
loginprotection {