From 1cd622a77834267fa89efee0428316353496b359 Mon Sep 17 00:00:00 2001 From: moonleay Date: Thu, 14 Sep 2023 09:42:08 +0200 Subject: [PATCH] chore: updated SendPlannerExtension documentation Signed-off-by: moonleay --- .../net/moonleay/lilJudd/extensions/SendPlannerExtension.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/kotlin/net/moonleay/lilJudd/extensions/SendPlannerExtension.kt b/src/main/kotlin/net/moonleay/lilJudd/extensions/SendPlannerExtension.kt index 0e53f7b..d4b8808 100644 --- a/src/main/kotlin/net/moonleay/lilJudd/extensions/SendPlannerExtension.kt +++ b/src/main/kotlin/net/moonleay/lilJudd/extensions/SendPlannerExtension.kt @@ -47,13 +47,13 @@ class SendPlannerExtension : Extension() { override suspend fun setup() { publicSlashCommand() { name = "sendplanner" - description = "Send the planner for the current and x next weeks" + description = "Send the planner for the current week" this.action { if (!this.member!!.asMember(this.guild!!.id) .hasPermission(Permission.Administrator) ) { val res = this.respond { - this.content = "no." + this.content = "You need to be an administrator to use this command." } res.delete() return@action