[fix] bot message on \!figurinha

This commit is contained in:
synt-xerror
2026-03-15 13:04:34 -03:00
parent 26b11ff555
commit 6ff00625a3
2 changed files with 5 additions and 25 deletions

View File

@@ -70,16 +70,16 @@ export async function processarComando(msg, chat, chatId) {
await gerarSticker(msg, chatId);
} else {
if (stickerSessions.has(chatId)) {
return msg.reply("Já existe uma sessão ativa.");
return msg.reply(botMsg("Já existe uma sessão ativa."));
}
iniciarSessao(chatId, author);
await msg.reply(
await msg.reply(botMsg(
`Sessão de figurinha iniciada por @${author.split("@")[0]}. Envie no máximo 10 imagens, quando estiver pronto mande \`!figurinha criar\``,
null,
{ mentions: [author] }
);
));
}
break;

View File

@@ -1,25 +1,5 @@
export const CLIENT_ID = "bot_permanente";
export const BOT_PREFIX = "🤖 *ManyBot:* ";
export const CHATS = [
"120363154851081681@g.us", // notes
// My Little Pony Lovers
"120363312522727359@g.us", // Bate Papo
"120363400771484275@g.us", // Esquina do Torrão de Açucar
"120363390798163307@g.us", // Pony Games
"120363333043832020@g.us", // Biblioteca Carvalho Dourado
"120363323711786058@g.us", // Art Photos
"120363297816028907@g.us", // Mlp Chat
// ManeOS Community
"120363402117932687@g.us", // Internet Café
"120363403544066540@g.us", // Biblioteca
// Legends of Equestria
"120363400871896535@g.us", // WonderBolts
// Contatos
"5516994432546@c.us", // Isa
"5516994061112@c.us", // Diego
"111420763045901@lid" // Maryana
]
// coloque os chats que quer aqui
];