Horse Race Command

This commit is contained in:
Dragon Fire
2020-04-21 18:49:41 -04:00
parent 3145267427
commit 4bedbcda74
14 changed files with 309 additions and 10 deletions
+1 -1
View File
@@ -24,6 +24,6 @@ module.exports = class GenerateProcessEnvCommand extends Command {
line = line.replace('=', '');
return `${line}="${process.env[line] || ''}"`;
}).join('\n');
return msg.channel.send({ files: [{ attachment: Buffer.from(list), name: 'process.env.txt' }] });
return msg.say({ files: [{ attachment: Buffer.from(list), name: 'process.env.txt' }] });
}
};