Переглянути джерело

Don't automorph if bot is pinged

denikson 6 роки тому
батько
коміт
2450670070
1 змінених файлів з 3 додано та 0 видалено
  1. 3 0
      commands/facemorph.js

+ 3 - 0
commands/facemorph.js

@@ -124,6 +124,9 @@ const onMessage = (msg, contents, actionsDone) => {
     if (actionsDone)
         return false;
 
+    if(msg.mentions.users.size > 0 && msg.mentions.users.first().id == client.user.id)
+        return false;
+
     let imageAttachment = msg.attachments.find(v => util.isValidImage(v.filename));
 
     if (imageAttachment) {