Bifrost: Implement player advancement notifications. Oh my god this was hard and it still is ugly.

This commit is contained in:
Kenneth Endfinger
2022-01-17 17:19:12 -05:00
parent d16b9b1138
commit 9395f43e40
5 changed files with 91 additions and 2 deletions

View File

@ -11,7 +11,7 @@ class FoundationGradlePlugin : Plugin<Project> {
project.afterEvaluate { ->
setupPaperServer.dependsOn(*project.subprojects
.filter { it.name.startsWith("foundation-") }
.map { it.tasks.getByName("build") }
.map { it.tasks.getByName("shadowJar") }
.toTypedArray()
)
}