Fix Nukkit examples

This commit is contained in:
Minecrell 2018-07-24 15:55:13 +02:00
parent a1ff0b1ab5
commit 0db65c712f

View file

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