nodbot/commands/pasta.js

15 lines
449 B
JavaScript
Raw Normal View History

2021-06-30 22:59:24 +00:00
module.exports = {
name: 'pasta',
description: 'Send a copypasta.',
execute(message, file) {
const client = message.client;
const replyHeader = `\'${file.name}\' requested by: ${message.author.username}\n`;
let replyBody = '';
if (!client.pastas.has(file.name)) {
replyBody = 'Sorry I couldn\'t find that pasta.';
} else {
replyBody = client.pastas.get(file.name).content;
}
message.channel.send(replyHeader + replyBody);
}
}