dont need quote anymore

merge-requests/3/head
Supositware 5 years ago
parent cf0e57f4b4
commit 9e99841e87

@ -5,11 +5,11 @@ class ClapCommand extends Command {
super('clap', {
aliases: ['clap'],
category: 'general',
split: 'none',
args: [
{
id: 'text',
type: 'string'
type: 'string',
match: 'rest'
}
],
description: {

@ -6,11 +6,11 @@ class EmotesayCommand extends Command {
super('emotesay', {
aliases: ['emotesay', 'esay'],
category: 'general',
split: 'none',
args: [
{
id: 'text',
type: 'string'
type: 'string',
match: 'rest'
}
],
description: {

@ -7,11 +7,11 @@ class RedditCommand extends Command {
super('reddit', {
aliases: ['reddit'],
category: 'general',
split: 'none',
args: [
{
id: 'sub',
type: 'string',
match: 'rest'
}
],
description: {

@ -5,11 +5,11 @@ class SayCommand extends Command {
super('say', {
aliases: ['say'],
category: 'general',
split: 'none',
args: [
{
id: 'text',
type: 'string',
match: 'rest'
}
],
description: {

@ -5,12 +5,12 @@ class SaydCommand extends Command {
super('sayd', {
aliases: ['sayd'],
category: 'general',
split: 'none',
clientPermissions: 'MANAGE_MESSAGES',
args: [
{
id: 'text',
type: 'string'
type: 'string',
match: 'rest'
}
],
description: {

@ -8,11 +8,11 @@ class TtsCommand extends Command {
super('tts', {
aliases: ['tts'],
category: 'general',
split: 'none',
args: [
{
id: 'text',
type: 'string'
type: 'string',
match: 'rest'
}
],
description: {

@ -12,7 +12,8 @@ class TtsvcCommand extends Command {
args: [
{
id: 'text',
type: 'string'
type: 'string',
match: 'rest'
}
],
description: {

@ -12,7 +12,8 @@ class EvalCommand extends Command {
},
{
id: 'text',
type: 'string'
type: 'string',
match: 'rest'
}
],
ownerOnly: 'true',

@ -15,7 +15,8 @@ class bsespamCommand extends Command {
},
{
id: 'text',
type: 'string'
type: 'string',
match: 'rest'
}
],
description: { //recommended

@ -6,11 +6,12 @@ class FeedbackCommand extends Command {
super('feedback', {
aliases: ['feedback'],
category: 'utility',
split: 'none',
quoted: false,
args: [
{
id: 'text',
type: 'string'
type: 'string',
match: 'rest'
}
],
description: {

Loading…
Cancel
Save