Explorar o código

Fix sending dead chat reply

ghorsington %!s(int64=5) %!d(string=hai) anos
pai
achega
497d221e64
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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;