Fly Prank Command

This commit is contained in:
Daniel Odendahl Jr
2018-10-03 23:19:34 +00:00
parent 74d1131548
commit 5f643ba92a
3 changed files with 21 additions and 1 deletions
+19
View File
@@ -0,0 +1,19 @@
const Command = require('../../structures/Command');
const path = require('path');
module.exports = class FlyCommand extends Command {
constructor(client) {
super(client, {
name: 'fly',
aliases: ['fly-prank'],
group: 'single',
memberName: 'fly',
description: 'Sends a fake fly that looks surprisngly real.',
clientPermissions: ['ATTACH_FILES']
});
}
run(msg) {
return msg.say({ files: [path.join(__dirname, '..', '..', 'assets', 'images', 'fly.png')] });
}
};