aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFederico fuji97 Rapetti <[email protected]>2022-01-10 19:41:43 +0100
committerFederico fuji97 Rapetti <[email protected]>2022-01-10 19:41:43 +0100
commitac1fef836fed6ffe5be9830c73a06e29c70628c8 (patch)
tree8096bd74842ef6801bbd429f663491c91ad11e83 /src
parent55d8a2e97b6391e000af59c1e86966edc4e4aa81 (diff)
downloadmuse-ac1fef836fed6ffe5be9830c73a06e29c70628c8.tar.xz
muse-ac1fef836fed6ffe5be9830c73a06e29c70628c8.zip
Change welcome message to use slash command
Diffstat (limited to 'src')
-rw-r--r--src/events/guild-create.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/events/guild-create.ts b/src/events/guild-create.ts
index 722b736..6263673 100644
--- a/src/events/guild-create.ts
+++ b/src/events/guild-create.ts
@@ -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.`);
};