diff --git a/Dockerfile b/Dockerfile index 1fbe5e1..be66f79 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,4 +11,4 @@ COPY .yarn/patches .yarn/patches COPY tsconfig.json package.json yarn.lock .yarnrc.yml ./ RUN yarn -CMD yarn node . +CMD [ "yarn", "node", "." ] diff --git a/src/commands/mp.ts b/src/commands/mp.ts index 65b1941..716668a 100644 --- a/src/commands/mp.ts +++ b/src/commands/mp.ts @@ -191,7 +191,7 @@ export default class MP { if (client.config.dcServer.id === interaction.guildId) { if (!interaction.member.roles.cache.has(client.config.dcServer.roles.mpmod) && !client.config.whitelist.includes(interaction.member.id)) return MessageTool.youNeedRole(interaction, 'mpmod'); } - const suggestionPool = await (interaction.guild.channels.cache.get(client.config.dcServer.channels.mpmod_chat) as Discord.TextChannel).messages.fetch(MPChannels.modChat); + const suggestionPool = await (client.guilds.cache.get(client.config.dcServer.id).channels.cache.get(client.config.dcServer.channels.mpmod_chat) as Discord.TextChannel).messages.fetch(MPChannels.modChat); interaction.reply({embeds: [suggestionPool.embeds[0]]}); }, // Server management group create_server: async()=>{