From 2ba2cec39905cd2b8f970787568f191a974ba737 Mon Sep 17 00:00:00 2001 From: Lucid Date: Tue, 21 Oct 2025 16:57:29 -0400 Subject: [PATCH] Updated welcome message. --- src/bot/features/welcome.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bot/features/welcome.ts b/src/bot/features/welcome.ts index 7b1aa19..9bbcf5d 100644 --- a/src/bot/features/welcome.ts +++ b/src/bot/features/welcome.ts @@ -12,7 +12,7 @@ const feature = composer.chatType("private"); feature.command("start", logHandle("command-start"), ctx => { // Responds with information about the bot. return ctx.reply( - `Welcome\\! I am a bot created by Lucid for [Werewolf Kid Creations](https://werewolfkid.monster/) I am designed to delete any Twitter/X and Meta links along with corresponding reformatting services within groups\\. I also check embedded links amd forwarded messages\\! I am currently in a public beta mode\\! Simply add me to a group and make me an admin with the permission to delete messages\\. From there I will start deleting any Twitter\\/X and Meta links I detect\\.`, + `Welcome\\! I am a bot created by Lucid for [Werewolf Kid Creations](https://werewolfkid.monster/) I am designed to delete any Twitter/X and Meta links along with corresponding reformatting services within groups\\. I also check embedded links and forwarded messages\\! I am currently in a public beta mode\\! Simply add me to a group and make me an admin with the permission to delete messages\\. From there I will start deleting any Twitter\\/X and Meta links I detect\\.`, { parse_mode: "MarkdownV2" } ); });