Skip to content

Commit

Permalink
[Fix] fixed the guildAdd message
Browse files Browse the repository at this point in the history
  • Loading branch information
naseif committed Oct 4, 2021
1 parent 4443b0a commit 3ce7d23
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion events/guildCreate.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,15 @@ module.exports = {
async execute(guild) {
if (guild.systemChannel) {
guild.systemChannel.send({
content: `**Thanks for adding me to your server!**\n- I am programmed with discord's latest slash commands feature!\n- to use me just type / and select a command to get started!\n I also support commands with aliases, type ${prefix}help for more Info.\nTo set a custom prefix, type ${prefix}setup <new prefix>`,
content:
`**Thanks for adding me to your server!**\n- I am programmed with discord's latest slash commands feature!\n- to use me just type / and select a command to get started!\n- I also support commands with aliases, type ` +
"`" +
`${prefix}help` +
"`" +
` for more Info.\n- To set a custom prefix, type ` +
"`" +
`${prefix}setup <new prefix>` +
"`",
files: ["https://nekos.best/api/v1/cuddle/017.gif"],
});
} else {
Expand Down

0 comments on commit 3ce7d23

Please sign in to comment.