mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-27 22:27:44 +02:00
Eggs Get Laid Command, fixes
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
const Command = require('../../structures/Command');
|
||||
const path = require('path');
|
||||
|
||||
module.exports = class EggsGetLaidCommand extends Command {
|
||||
constructor(client) {
|
||||
super(client, {
|
||||
name: 'eggs-get-laid',
|
||||
aliases: ['eggs-gets-laid'],
|
||||
group: 'single',
|
||||
memberName: 'eggs-get-laid',
|
||||
description: 'Sends the ultimate roast.',
|
||||
clientPermissions: ['ATTACH_FILES']
|
||||
});
|
||||
}
|
||||
|
||||
run(msg) {
|
||||
return msg.say({ files: [path.join(__dirname, '..', '..', 'assets', 'images', 'eggs-get-laid.png')] });
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user