We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1f07751 + 68e2394 commit 5c464a2Copy full SHA for 5c464a2
build.gradle.kts
@@ -68,6 +68,19 @@ paper {
68
}
69
70
permissions {
71
+ register("tweaks.admin") {
72
+ this.default = BukkitPluginDescription.Permission.Default.OP
73
+ this.description = "Allows admin access to everything Tweaks offers"
74
+ this.children = listOf(
75
+ "tweaks.commands.environmental",
76
+ "tweaks.commands.item",
77
+ "tweaks.commands.player",
78
+ "tweaks.commands.server",
79
+ "tweaks.commands.workstation",
80
+ "tweaks.chat.delete"
81
+ )
82
+ }
83
+
84
register("tweaks.command.spawn") {
85
this.default = BukkitPluginDescription.Permission.Default.TRUE
86
this.description = "Allows players to use the spawn command"
0 commit comments