Fix incorrectly named property

This commit is contained in:
Chipmunk 2024-03-27 17:32:10 -04:00
parent 999b6812a7
commit 0fcbb5cc64

View file

@ -34,6 +34,6 @@ module.exports = {
dispatcherUnknownCommand: new SimpleCommandExceptionType(new LiteralMessage('Unknown command')),
dispatcherUnknownArgument: new SimpleCommandExceptionType(new LiteralMessage('Incorrect argument for command')),
dispatcherExpectedArgumentSeperator: new SimpleCommandExceptionType(new LiteralMessage('Expected whitespace to end one argument, but found trailing data')),
dispatcherExpectedArgumentSeparator: new SimpleCommandExceptionType(new LiteralMessage('Expected whitespace to end one argument, but found trailing data')),
dispatcherParseException: new DynamicCommandExceptionType(message => new LiteralMessage(`Could not parse command: ${message}`))
}