소스 검색

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) {