Fix the Kotlin calls for adding commands and permissions.

Closes #4
This commit is contained in:
Mariell Hoversholm 2020-04-08 12:12:35 +02:00 committed by Minecrell
parent 36ec001e8e
commit 07b13e57a5
1 changed files with 5 additions and 5 deletions

View File

@ -110,7 +110,7 @@ bukkit {
provides = listOf("TestPluginOldName", "TestPlug")
commands {
"test" {
register("test") {
description = "This is a test command!"
aliases = listOf("t")
permission = "testplugin.test"
@ -121,12 +121,12 @@ bukkit {
}
permissions {
"testplugin.*" {
register("testplugin.*") {
children = listOf("testplugin.test") // Defaults permissions to true
// You can also specify the values of the permissions
childrenMap = mapOf("testplugin.test" to true)
}
"testplugin.test" {
register("testplugin.test") {
description = "Allows you to run the test command"
default = BukkitPluginDescription.Permission.Default.OP // TRUE, FALSE, OP or NOT_OP
}
@ -271,7 +271,7 @@ nukkit {
prefix = "TEST"
commands {
"test" {
register("test") {
description = "This is a test command!"
aliases = listOf("t")
permission = "testplugin.test"
@ -281,7 +281,7 @@ nukkit {
}
permissions {
"testplugin.*" {
register("testplugin.*") {
description = "Allows you to run all testplugin commands"
children {
"testplugin.test" {