From 87280cab217fa0b19cd0a8213522473a12208b51 Mon Sep 17 00:00:00 2001 From: Luquinhas Date: Fri, 10 Jan 2025 10:55:33 -0300 Subject: [PATCH] Removed bot about from help --- src/commands/help.js | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/commands/help.js b/src/commands/help.js index c869847..4b16d1c 100644 --- a/src/commands/help.js +++ b/src/commands/help.js @@ -17,8 +17,7 @@ async function sendHelpMessage(ctx, isEditing) { [{ text: Strings.mainCommands, callback_data: 'helpMain' }, { text: Strings.usefulCommands, callback_data: 'helpUseful' }], [{ text: Strings.interactiveEmojis, callback_data: 'helpInteractive' }, { text: Strings.funnyCommands, callback_data: 'helpFunny' }], [{ text: Strings.lastFm, callback_data: 'helpLast' }, { text: Strings.animalCommands, callback_data: 'helpAnimals' }], - [{ text: Strings.ytDlp, callback_data: 'helpYouTube' }, { text: Strings.myLittlePony, callback_data: 'helpMLP' }], - [{ text: Strings.aboutBot, callback_data: 'helpAbout' }] + [{ text: Strings.ytDlp, callback_data: 'helpYouTube' }, { text: Strings.myLittlePony, callback_data: 'helpMLP' }] ] } }; @@ -91,10 +90,6 @@ module.exports = (bot) => { await ctx.answerCbQuery(); await ctx.editMessageText(Strings.myLittlePonyDesc, options); break; - case 'helpAbout': - await ctx.answerCbQuery(); - await ctx.editMessageText(Strings.botAbout, options); - break; case 'helpBack': await ctx.answerCbQuery(); await sendHelpMessage(ctx, true);