1
0
Fork 0

Removed some outdated thing

akairo
loicbersier 6 years ago
parent b7ec53a11e
commit 28ad32d4ec

@ -5,7 +5,6 @@ class BanCommand extends Command {
super('ban', { super('ban', {
aliases: ['ban'], aliases: ['ban'],
category: 'admin', category: 'admin',
split: 'quote',
args: [ args: [
{ {
id: 'member', id: 'member',
@ -13,7 +12,8 @@ class BanCommand extends Command {
}, },
{ {
id: 'reasons', id: 'reasons',
type: 'string' type: 'string',
match: 'rest'
} }
], ],
clientPermissions: ['BAN_MEMBERS'], clientPermissions: ['BAN_MEMBERS'],

@ -5,7 +5,6 @@ class KickCommand extends Command {
super('kick', { super('kick', {
aliases: ['kick'], aliases: ['kick'],
category: 'admin', category: 'admin',
split: 'quoted',
args: [ args: [
{ {
id: 'member', id: 'member',
@ -13,7 +12,8 @@ class KickCommand extends Command {
}, },
{ {
id: 'reasons', id: 'reasons',
type: 'string' type: 'string',
match: 'rest'
} }
], ],
clientPermissions: ['KICK_MEMBERS'], clientPermissions: ['KICK_MEMBERS'],

@ -4,14 +4,14 @@ class BotAvatarCommand extends Command {
constructor() { constructor() {
super('botavatar', { super('botavatar', {
aliases: ['botavatar', 'bavatar'], aliases: ['botavatar', 'bavatar'],
split: 'none',
category: 'owner', category: 'owner',
ownerOnly: 'true', ownerOnly: 'true',
args: [ args: [
{ {
id: 'image', id: 'image',
type:'string', type:'string',
optional: true optional: true,
match: 'rest'
} }
], ],
description: { description: {

@ -4,14 +4,14 @@ class emitCommand extends Command {
constructor() { constructor() {
super('emit', { super('emit', {
aliases: ['emit'], aliases: ['emit'],
split: 'none',
category: 'owner', category: 'owner',
ownerOnly: 'true', ownerOnly: 'true',
args: [ args: [
{ {
id: 'event', id: 'event',
prompt: 'Wich event should i trigger?', prompt: 'Wich event should i trigger?',
type: 'string' type: 'string',
match: 'rest'
} }
], ],
description: { description: {

@ -4,12 +4,12 @@ class EvalCommand extends Command {
constructor() { constructor() {
super('eval', { super('eval', {
aliases: ['eval'], aliases: ['eval'],
split: 'none',
category: 'owner', category: 'owner',
args: [ args: [
{ {
id: 'eval', id: 'eval',
type: 'string' type: 'string',
match: 'rest'
} }
], ],
ownerOnly: 'true', ownerOnly: 'true',

Loading…
Cancel
Save