Change welcome message to use slash command

This commit is contained in:
Federico fuji97 Rapetti 2022-01-10 19:41:43 +01:00
parent 55d8a2e97b
commit ac1fef836f

View file

@ -86,7 +86,7 @@ export default async (guild: Guild): Promise<void> => {
// Send welcome
const boundChannel = guild.client.channels.cache.get(chosenChannel.id) as TextChannel;
await boundChannel.send(`hey <@${owner.id}> try \`${prefixCharacter}play https://www.youtube.com/watch?v=dQw4w9WgXcQ\``);
await boundChannel.send(`hey <@${owner.id}> try \`\\play https://www.youtube.com/watch?v=dQw4w9WgXcQ\``);
await firstStepMsg.channel.send(`Sounds good. Check out **#${chosenChannel.name}** to get started.`);
};