You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
473 B
21 lines
473 B
const {Command} = require('../../lib.js')
|
|
|
|
|
|
|
|
class tableflip extends Command{
|
|
constructor(client){
|
|
super(client, {
|
|
name: 'tableflip',
|
|
group:'random',
|
|
memberName: 'tableflip',
|
|
description: 'Flips a table.'
|
|
|
|
})
|
|
}
|
|
async run(message, args){
|
|
message.channel.send('(╯°□°)╯︵ ┻━┻');
|
|
|
|
|
|
}
|
|
}
|
|
module.exports = tableflip; |