Make commands case-insensitive
parent
6a9e55ade0
commit
3abb376397
|
@ -17,6 +17,9 @@ const bot = new Eris.CommandClient(config.token, {}, {
|
||||||
ignoreSelf: true,
|
ignoreSelf: true,
|
||||||
ignoreBots: true,
|
ignoreBots: true,
|
||||||
defaultHelpCommand: false,
|
defaultHelpCommand: false,
|
||||||
|
defaultCommandOptions: {
|
||||||
|
caseInsensitive: true,
|
||||||
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
const restBot = new Eris.Client(`Bot ${config.token}`, {
|
const restBot = new Eris.Client(`Bot ${config.token}`, {
|
||||||
|
|
Loading…
Reference in New Issue