plugin-yml
plugin-yml copied to clipboard
serverDependencies Array?
Hello!
Just a small question, is it possible to use multiple plugin names, for the same serverDependency Configuration for paper?
I am currently using something like this:
serverDependencies {
"LuckPerms" {
load = "BEFORE"
}
// During server run time, require WorldEdit, add it to the classpath, and load it before us
"WorldEdit" {
load = 'BEFORE'
}
}
But would this be also possible to add? Or is there already a method?
serverDependencies {
"LuckPerms", "WorldEdit" {
load = "BEFORE"
}
}