1
0
mirror of https://github.com/toast-ts/Daggerbot-TS.git synced 2024-09-29 00:10:58 -04:00

Find the webhook embed using the client instead of interaction

This commit is contained in:
toast-ts 2024-08-14 11:33:49 +10:00
parent fd91cbc67c
commit 89d85896fb
2 changed files with 2 additions and 2 deletions

View File

@ -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", "." ]

View File

@ -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()=>{