Fix NeoForge not running

This commit is contained in:
James Seibel
2024-06-24 20:52:14 -05:00
parent b57ea41686
commit a23211d061
2 changed files with 5 additions and 3 deletions
+5 -3
View File
@@ -431,9 +431,11 @@ subprojects { p ->
jar {
from "LICENSE.txt"
manifest {
attributes 'Implementation-Title': rootProject.mod_name,
'Implementation-Version': rootProject.mod_version,
'Main-Class': 'com.seibel.distanthorizons.core.jar.JarMain' // When changing the main of the jar change this line
attributes(
'Implementation-Title': rootProject.mod_name,
'Implementation-Version': rootProject.mod_version,
'Main-Class': 'com.seibel.distanthorizons.core.jar.JarMain' // When changing the main of the jar change this line
)
}
}