forked from Supositware/Haha-Yes
Rename people to fartpiss
This commit is contained in:
parent
84d123fadd
commit
041f84741a
1 changed files with 28 additions and 0 deletions
28
commands/hidden/fartpiss.js
Normal file
28
commands/hidden/fartpiss.js
Normal file
|
@ -0,0 +1,28 @@
|
|||
const { Command } = require('discord-akairo');
|
||||
|
||||
class fartpissCommand extends Command {
|
||||
constructor() {
|
||||
super('fartpiss', {
|
||||
aliases: ['fartpiss'],
|
||||
category: 'hidden',
|
||||
args: [
|
||||
{
|
||||
id: 'member',
|
||||
type: 'member'
|
||||
}
|
||||
],
|
||||
description: {
|
||||
content: 'fartpiss',
|
||||
usage: '',
|
||||
examples: ['']
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
async exec(message, args) {
|
||||
args.member.setNickname('fart pis');
|
||||
message.channel.send('fart piss <:youngtroll:488559163832795136>');
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = fartpissCommand;
|
Loading…
Reference in a new issue