Fix lowcode implementation version, now that it's actually labeling the correct package.

This commit is contained in:
LexManos 2023-10-24 23:13:26 -07:00
parent e34090c809
commit 7a443276a5
No known key found for this signature in database
GPG key ID: 6E90061A7AE1F652

View file

@ -25,7 +25,7 @@ tasks.named('jar', Jar).configure {
'Specification-Vendor': 'Forge Development LLC',
'Specification-Version': '1.0',
'Implementation-Title': project.name,
'Implementation-Version': project.version,
'Implementation-Version': FORGE_VERSION.split('\\.')[0], //project.version, TODO: Split out into a real versioned system, for now use the default that net.minecraftforge.fml.loading.LanguageLoadingProvider.loadLanguageProviders() used
'Implementation-Vendor': 'Forge Development LLC'
] as java.util.LinkedHashMap, 'net/minecraftforge/fml/lowcodemod/')
}