Ignore self messages
This commit is contained in:
parent
c46d183608
commit
06f9758bc2
1
main.js
1
main.js
@ -178,6 +178,7 @@ client.on('interactionCreate', async interaction => {
|
|||||||
client.on('messageCreate', message => {
|
client.on('messageCreate', message => {
|
||||||
// Some basic checking to prevent running unnecessary code
|
// Some basic checking to prevent running unnecessary code
|
||||||
if (message.author.bot) return;
|
if (message.author.bot) return;
|
||||||
|
if (message.auther.id == client.user.id) return;
|
||||||
|
|
||||||
// Wildcard Responses, will respond if any message contains the trigger word(s), excluding self-messages
|
// Wildcard Responses, will respond if any message contains the trigger word(s), excluding self-messages
|
||||||
const lowerContent = message.content.toLowerCase();
|
const lowerContent = message.content.toLowerCase();
|
||||||
|
Loading…
Reference in New Issue
Block a user