You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
508 B
16 lines
508 B
3 years ago
|
const Discord = require('discord.js');
|
||
|
|
||
|
module.exports = {
|
||
|
name: "bread",
|
||
|
aliases: ['bred'],
|
||
|
meta: {
|
||
|
category: 'Fun',
|
||
|
description: "By making use of the wonderful technological advancements of modern-day 2000's computer code, Luno synthesizes digital bread and gives it to you.",
|
||
|
syntax: '`bread`',
|
||
|
extra: null
|
||
|
},
|
||
|
help: "bread.",
|
||
|
async execute(message, msg, args, cmd, prefix, mention, client) {
|
||
|
return message.channel.send(":bread:");
|
||
|
}
|
||
|
};
|