Removed some outdated thing
This commit is contained in:
parent
b7ec53a11e
commit
28ad32d4ec
5 changed files with 10 additions and 10 deletions
|
@ -5,7 +5,6 @@ class BanCommand extends Command {
|
|||
super('ban', {
|
||||
aliases: ['ban'],
|
||||
category: 'admin',
|
||||
split: 'quote',
|
||||
args: [
|
||||
{
|
||||
id: 'member',
|
||||
|
@ -13,7 +12,8 @@ class BanCommand extends Command {
|
|||
},
|
||||
{
|
||||
id: 'reasons',
|
||||
type: 'string'
|
||||
type: 'string',
|
||||
match: 'rest'
|
||||
}
|
||||
],
|
||||
clientPermissions: ['BAN_MEMBERS'],
|
||||
|
|
|
@ -5,7 +5,6 @@ class KickCommand extends Command {
|
|||
super('kick', {
|
||||
aliases: ['kick'],
|
||||
category: 'admin',
|
||||
split: 'quoted',
|
||||
args: [
|
||||
{
|
||||
id: 'member',
|
||||
|
@ -13,7 +12,8 @@ class KickCommand extends Command {
|
|||
},
|
||||
{
|
||||
id: 'reasons',
|
||||
type: 'string'
|
||||
type: 'string',
|
||||
match: 'rest'
|
||||
}
|
||||
],
|
||||
clientPermissions: ['KICK_MEMBERS'],
|
||||
|
|
|
@ -4,14 +4,14 @@ class BotAvatarCommand extends Command {
|
|||
constructor() {
|
||||
super('botavatar', {
|
||||
aliases: ['botavatar', 'bavatar'],
|
||||
split: 'none',
|
||||
category: 'owner',
|
||||
ownerOnly: 'true',
|
||||
args: [
|
||||
{
|
||||
id: 'image',
|
||||
type:'string',
|
||||
optional: true
|
||||
optional: true,
|
||||
match: 'rest'
|
||||
}
|
||||
],
|
||||
description: {
|
||||
|
|
|
@ -4,14 +4,14 @@ class emitCommand extends Command {
|
|||
constructor() {
|
||||
super('emit', {
|
||||
aliases: ['emit'],
|
||||
split: 'none',
|
||||
category: 'owner',
|
||||
ownerOnly: 'true',
|
||||
args: [
|
||||
{
|
||||
id: 'event',
|
||||
prompt: 'Wich event should i trigger?',
|
||||
type: 'string'
|
||||
type: 'string',
|
||||
match: 'rest'
|
||||
}
|
||||
],
|
||||
description: {
|
||||
|
|
|
@ -4,12 +4,12 @@ class EvalCommand extends Command {
|
|||
constructor() {
|
||||
super('eval', {
|
||||
aliases: ['eval'],
|
||||
split: 'none',
|
||||
category: 'owner',
|
||||
args: [
|
||||
{
|
||||
id: 'eval',
|
||||
type: 'string'
|
||||
type: 'string',
|
||||
match: 'rest'
|
||||
}
|
||||
],
|
||||
ownerOnly: 'true',
|
||||
|
|
Loading…
Reference in a new issue