This commit is contained in:
Dragon Fire
2024-05-16 17:22:20 -04:00
parent b77d7cdf4b
commit d6ef8afeb8
2 changed files with 6 additions and 5 deletions
-4
View File
@@ -59,7 +59,6 @@ module.exports = class CommandDispatcher {
error: stripIndents`
The "${arg.label || arg.key}" argument is required.
${arg.invalidText}
Correct Usage Example: ${command.example(msg)}
`
};
}
@@ -76,7 +75,6 @@ module.exports = class CommandDispatcher {
error: stripIndents`
An invalid value was provided for one of the "${arg.label || arg.key}" arguments.
${arg.invalidText}
Correct Usage Example: ${command.example(msg)}
`
};
}
@@ -93,7 +91,6 @@ module.exports = class CommandDispatcher {
error: stripIndents`
The "${arg.label || arg.key}" argument is required.
${arg.invalidText}
Correct Usage Example: ${command.example(msg)}
`
};
} else {
@@ -110,7 +107,6 @@ module.exports = class CommandDispatcher {
error: stripIndents`
An invalid value was provided for the "${arg.label || arg.key}" argument.
${arg.invalidText}
Correct Usage Example: ${command.example(msg)}
`
};
}