nodbot/dot-commands/pasta.js
Skylar Grant 21ef9012ac
Some checks are pending
NodBot Production Dockerization / build (push) Waiting to run
Updates, fix pastas
2024-09-22 12:17:09 -04:00

19 lines
533 B
JavaScript

const fn = require('../functions.js');
module.exports = {
name: 'pasta',
description: 'Send a copypasta.',
usage: '<Copypasta Name>.pasta',
execute(message, commandData) {
const client = message.client;
let replyBody = '';
let iconUrl;
if (!client.pastas.has(commandData.args)) {
commandData.content = 'Sorry I couldn\'t find that pasta.';
} else {
commandData.content = client.pastas.get(commandData.args).content;
}
const messagePayload = fn.embeds.pasta(commandData);
message.reply(messagePayload);
}
}