From 2ba760f6204d705313ddd7d5d141038604805323 Mon Sep 17 00:00:00 2001 From: Danil Nikolaev Date: Thu, 22 Jan 2026 17:07:02 +0300 Subject: [PATCH] add title and description to debug command --- src/commands/debug.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/commands/debug.ts b/src/commands/debug.ts index 959ba3e..a0cf5da 100644 --- a/src/commands/debug.ts +++ b/src/commands/debug.ts @@ -5,6 +5,9 @@ import {Requirement} from "../base/requirement"; import {logError, replyToMessage} from "../util/utils"; export class Debug extends ChatCommand { + title = "/debug"; + description = "Returns msg (or reply) as json"; + requirements = Requirements.Build(Requirement.BOT_ADMIN); async execute(msg: Message): Promise {