Не могу понять, в каналах команда работает а в личке с ботом нет, что делать? Помогите пожалуйста
const{ Intents } = require('discord.js')
const { token } = require("./config.json")
const { Client, GatewayIntentBits } = require('discord.js')
const z = "Я запущен"
const prefix = "!"
const client = new Client({
intents: [
GatewayIntentBits.Guilds,
GatewayIntentBits.GuildMessages,
GatewayIntentBits.MessageContent,
GatewayIntentBits.GuildScheduledEvents,
]
})
client.once('ready', () => {
console.log(z)
})
client.on('messageCreate', (message) => {
if (!message.content.startsWith(prefix)) return;
const commandBody = message.content.slice(prefix.length);
const args = commandBody.split(' ');
const command = args.shift().toLowerCase();
const arg = message.content.split(" ");
if (command === "1") {
//client.channels.cache.get(`1054541132119412787`).send(args.join(" "));
message.channel.send(`1`)
client.guilds.cache.get("1045791023349125131").channels.cache.get("1054541132119412787").send(args.join(" "))
}
})
client.login(token);