Skip to content
This repository has been archived by the owner on Jun 18, 2022. It is now read-only.

Update onMention.js #5

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion messages/onMention.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ module.exports = {

async execute(message) {
return message.channel.send(
`Hi ${message.author}! My prefix is \`${prefix}\`, get help by \`${prefix}help\``
`Hi ${message.author}! My prefix is \`${prefix}\`, get help by \`${prefix}help\`\n :)`
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

'template literal syntax' is only available in ES6 (use 'esversion: 6').

);
},
};