This repository has been archived on 2022-10-14. You can view files and clone it, but cannot push or open issues/pull-requests.
melonybot/trashbin/brick.js

15 lines
333 B
JavaScript

let { Command } = require("discord-akairo")
module.exports = class extends Command {
constructor() {
super("brick", {
regex: /^brick$/i,
description: "template command",
category: 'responders',
description: "Responds with brick emoji"
})
}
async exec(message, args) {
await message.channel.send(":bricks:")
}
}