Fix Nukkit examples

This commit is contained in:
Minecrell 2018-07-24 15:55:13 +02:00
parent a1ff0b1ab5
commit 0db65c712f
1 changed files with 16 additions and 12 deletions

View File

@ -191,7 +191,7 @@ plugins {
id 'net.minecrell.plugin-yml.nukkit' version '0.3.0'
}
bukkit {
nukkit {
// Default values can be overridden if needed
// name = 'TestPlugin'
// version = '1.0'
@ -223,11 +223,13 @@ bukkit {
permissions {
'testplugin.*' {
children = ['testplugin.test']
}
'testplugin.test' {
description = 'Allows you to run the test command'
setDefault('OP') // 'TRUE', 'FALSE', 'OP' or 'NOT_OP'
description = 'Allows you to run all testplugin commands'
children {
'testplugin.test' {
description = 'Allows you to run the test command'
setDefault('OP') // 'TRUE', 'FALSE', 'OP' or 'NOT_OP'
}
}
}
}
}
@ -242,7 +244,7 @@ plugins {
id("net.minecrell.plugin-yml.nukkit") version "0.3.0"
}
bukkit {
nukkit {
// Default values can be overridden if needed
// name = "TestPlugin"
// version = "1.0"
@ -274,11 +276,13 @@ bukkit {
permissions {
"testplugin.*" {
children = listOf("testplugin.test")
}
"testplugin.test" {
description = "Allows you to run the test command"
default = NukkitPluginDescription.Permission.Default.OP // TRUE, FALSE, OP or NOT_OP
description = "Allows you to run all testplugin commands"
children {
"testplugin.test" {
description = "Allows you to run the test command"
default = NukkitPluginDescription.Permission.Default.OP // TRUE, FALSE, OP or NOT_OP
}
}
}
}
}