Files
xiao/commands/single/cave.js
T
Dragon Fire dcb9dc944e Cave Command
2020-06-16 11:41:50 -04:00

20 lines
506 B
JavaScript

const Command = require('../../structures/Command');
const path = require('path');
module.exports = class CaveCommand extends Command {
constructor(client) {
super(client, {
name: 'cave',
aliases: ['cavern', 'mine'],
group: 'single',
memberName: 'cave',
description: 'Sends a Minecraft cave that blends in with the chat.',
clientPermissions: ['ATTACH_FILES']
});
}
run(msg) {
return msg.say({ files: [path.join(__dirname, '..', '..', 'assets', 'images', 'cave.png')] });
}
};