mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-25 14:21:41 +02:00
Remove some other auto-reply stuff
This commit is contained in:
@@ -27,8 +27,7 @@ module.exports = class CleverbotCommand extends Command {
|
||||
prompt: 'What do you want to say to Cleverbot?',
|
||||
type: 'string'
|
||||
}
|
||||
],
|
||||
patterns: [/^(clevs|cleverbot) (.+)/i]
|
||||
]
|
||||
});
|
||||
|
||||
this.convos = new Map();
|
||||
|
||||
@@ -9,7 +9,6 @@ module.exports = class SubredditCommand extends SubredditCommandBase {
|
||||
memberName: 'subreddit',
|
||||
description: 'Responds with a random post from a subreddit.',
|
||||
clientPermissions: ['EMBED_LINKS'],
|
||||
patterns: [/^r\/(.+)/i],
|
||||
getIcon: true,
|
||||
args: [
|
||||
{
|
||||
|
||||
@@ -1,19 +1,17 @@
|
||||
const Command = require('../../structures/commands/AutoReply');
|
||||
const Command = require('../../structures/Command');
|
||||
|
||||
module.exports = class CanYouNotCommand extends Command {
|
||||
constructor(client) {
|
||||
super(client, {
|
||||
name: 'can-you-not',
|
||||
aliases: ['can-u-not'],
|
||||
group: 'auto',
|
||||
group: 'single',
|
||||
memberName: 'can-you-not',
|
||||
description: 'Can YOU not?',
|
||||
patterns: [/can (you|u) not/i],
|
||||
reply: true
|
||||
});
|
||||
}
|
||||
|
||||
generateText() {
|
||||
return 'Can YOU not?';
|
||||
run(msg) {
|
||||
return msg.say('Can YOU not?');
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user