mirror of
https://github.com/plexusorg/plugin-yml.git
synced 2024-10-31 17:19:21 +00:00
Fix Nukkit examples
This commit is contained in:
parent
a1ff0b1ab5
commit
0db65c712f
16
README.md
16
README.md
|
@ -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,13 +223,15 @@ bukkit {
|
|||
|
||||
permissions {
|
||||
'testplugin.*' {
|
||||
children = ['testplugin.test']
|
||||
}
|
||||
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'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
```
|
||||
</details>
|
||||
|
@ -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,13 +276,15 @@ bukkit {
|
|||
|
||||
permissions {
|
||||
"testplugin.*" {
|
||||
children = listOf("testplugin.test")
|
||||
}
|
||||
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
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
```
|
||||
</details>
|
||||
|
|
Loading…
Reference in a new issue