From 0d942e580f3ecbbe329c3b22142d96a5b88ce7a0 Mon Sep 17 00:00:00 2001 From: Minecrell Date: Fri, 30 Apr 2021 21:35:01 +0200 Subject: [PATCH] README: Fix one more missing register("...") for kotlin-dsl --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 231a66a..a30351a 100644 --- a/README.md +++ b/README.md @@ -284,7 +284,7 @@ nukkit { register("testplugin.*") { description = "Allows you to run all testplugin commands" children { - "testplugin.test" { + register("testplugin.test") { description = "Allows you to run the test command" default = NukkitPluginDescription.Permission.Default.OP // TRUE, FALSE, OP or NOT_OP }