fix: forgot to actually call copyJar

This commit is contained in:
zaaarf 2023-02-01 21:09:45 +01:00
parent 06e8d98707
commit 7ebbb991d2
No known key found for this signature in database
GPG key ID: 82240E075E31FA4C

View file

@ -148,7 +148,7 @@ tasks.register('copyJar', Copy) {
//copy jar from build/libs to the forge mod folder
//from shadowJar //we want the über version, not the small one
from reobfJar
from project.jar
into modDir
}
@ -164,3 +164,8 @@ publishing {
}
}
}
build {
//dependsOn shadowJar, reobfShadowJar
finalizedBy copyJar
}