Команда toggle на самом деле работает, попробуйте распечатать переменную где-нибудь.
В действительности может быть проблема с вашей структурой кода, if(!command.startsWith(prefix)) return;
около начала обработчика выйдет из функции, если появится сообщениене начинаться с префикса.
Это означает, что данный код ...
if (message.channel.id != 425328056777834506) return;
if (enabled === true && message.author.id != 234430480672358400 && Math.floor(Math.random() * Math.floor(4))=== 3 && message.attachments.size > 0) {
message.channel.send("Detected carried win, will now initiate\nhttps://cdn.discordapp.com/attachments/330441704073330688/453693702687162369/yeet.png");
} else if (enabled === true && message.content.search("!cleanup")===-1 && message.author.id != 234430480672358400 && message.attachments.size === 0) {
message.channel.send("send me a poto of ur win :thonk:");
};
не будет выполнен, если сообщение не начинается с требуемого префикса.
Вы можетевместо этого попробуйте использовать состояние else, что делает его ...
if(!command.startsWith(prefix))
{
//More stuff or...
return;
} else {
if (message.channel.id != 425328056777834506) return;
if (enabled === true && message.author.id != 234430480672358400 && Math.floor(Math.random() * Math.floor(4))=== 3 && message.attachments.size > 0) {
message.channel.send("Detected carried win, will now initiate\nhttps://cdn.discordapp.com/attachments/330441704073330688/453693702687162369/yeet.png");
} else if (enabled === true && message.content.search("!cleanup")===-1 && message.author.id != 234430480672358400 && message.attachments.size === 0) {
message.channel.send("send me a poto of ur win :thonk:");
}
}