소스 검색

Fix sending dead chat reply

ghorsington 5 년 전
부모
커밋
497d221e64
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      bot/src/commands/dead_chat.ts

+ 1 - 1
bot/src/commands/dead_chat.ts

@@ -29,7 +29,7 @@ export default {
         if(reply.length == 0)
             return false;
 
-        msg.channel.send(reply[0]);
+        msg.channel.send(reply[0].message);
         return true;
     }
 } as ICommand;