Remchanv2/commands/random/tableflip.js

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;