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.
23 lines
654 B
23 lines
654 B
const {Command} = require('../../lib.js')
|
|
|
|
|
|
|
|
class say extends Command{
|
|
constructor(client){
|
|
super(client, {
|
|
name: 'say',
|
|
group:'random',
|
|
memberName: 'say',
|
|
description: 'Rem-chan will send a message that you define.'
|
|
|
|
})
|
|
}
|
|
async run(message, args){
|
|
//say on channel
|
|
console.log("Say: -",message.author.username,"- on: ",message.guild.name,"'s ",message.channel.name.toLowerCase(),":",args.join(' '))
|
|
message.delete();
|
|
message.channel.send(args.join(' '));
|
|
|
|
}
|
|
}
|
|
module.exports = say; |