forked from Supositware/Haha-Yes
Merge branch 'master' of https://gitlab.com/loicbersier/discordbot
This commit is contained in:
commit
494e60dc11
4 changed files with 19 additions and 9 deletions
|
@ -7,7 +7,7 @@ module.exports = class AutoresponseCommand extends Command {
|
||||||
name: 'autoresponse',
|
name: 'autoresponse',
|
||||||
group: 'admin',
|
group: 'admin',
|
||||||
memberName: 'autoresponse',
|
memberName: 'autoresponse',
|
||||||
userPermissions: ['MANAGE_MESSAGES'],
|
userPermissions: ['ADMINISTRATOR'],
|
||||||
description: `Can disable autoresponse in the channel`,
|
description: `Can disable autoresponse in the channel`,
|
||||||
args: [
|
args: [
|
||||||
{
|
{
|
||||||
|
|
|
@ -6,10 +6,10 @@ const blacklist = require('../../json/blacklist.json')
|
||||||
module.exports = class RandoDogCommand extends Command {
|
module.exports = class RandoDogCommand extends Command {
|
||||||
constructor(client) {
|
constructor(client) {
|
||||||
super(client, {
|
super(client, {
|
||||||
name: 'randodog',
|
name: 'randocat',
|
||||||
group: 'fun',
|
group: 'fun',
|
||||||
memberName: 'randodog',
|
memberName: 'randocat',
|
||||||
description: `Show a random dog`,
|
description: `Show a random cat`,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -6,10 +6,10 @@ const blacklist = require('../../json/blacklist.json')
|
||||||
module.exports = class RandoCatCommand extends Command {
|
module.exports = class RandoCatCommand extends Command {
|
||||||
constructor(client) {
|
constructor(client) {
|
||||||
super(client, {
|
super(client, {
|
||||||
name: 'randocat',
|
name: 'randodog',
|
||||||
group: 'fun',
|
group: 'fun',
|
||||||
memberName: 'randocat',
|
memberName: 'randodog',
|
||||||
description: `Show a random cat`,
|
description: `Show a random dog`,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -22,8 +22,8 @@ module.exports = class RandoCatCommand extends Command {
|
||||||
}).then((response) => {
|
}).then((response) => {
|
||||||
const dogEmbed = new Discord.RichEmbed()
|
const dogEmbed = new Discord.RichEmbed()
|
||||||
.setColor("#ff9900")
|
.setColor("#ff9900")
|
||||||
.setTitle('Meow')
|
.setTitle('woof')
|
||||||
.setImage(response.file)
|
.setImage(response.url)
|
||||||
|
|
||||||
|
|
||||||
message.say(dogEmbed);
|
message.say(dogEmbed);
|
||||||
|
|
|
@ -40,6 +40,16 @@
|
||||||
"okay nig": "ger",
|
"okay nig": "ger",
|
||||||
"okay nigg": "er",
|
"okay nigg": "er",
|
||||||
"okay nigge": "r",
|
"okay nigge": "r",
|
||||||
|
"ok r": "etard",
|
||||||
|
"ok re": "tard",
|
||||||
|
"ok ret": "ard",
|
||||||
|
"ok reta": "rd",
|
||||||
|
"ok retar": "d",
|
||||||
|
"okay r": "etard",
|
||||||
|
"okay re": "tard",
|
||||||
|
"okay ret": "ard",
|
||||||
|
"okay reta": "rd",
|
||||||
|
"okay retar": "d",
|
||||||
"no u": "no u",
|
"no u": "no u",
|
||||||
"hmmmmmmmmmmmm": "ok shut up",
|
"hmmmmmmmmmmmm": "ok shut up",
|
||||||
"haha kick <@377563711927484418>": "*seinfeld bass line*",
|
"haha kick <@377563711927484418>": "*seinfeld bass line*",
|
||||||
|
|
Loading…
Reference in a new issue