Unify error message

This commit is contained in:
Tarrgon
2025-09-07 22:05:55 -04:00
parent c5868612cf
commit 7c050b62db
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -61,7 +61,7 @@ export default {
const user = await resolveUser(client, idToUse);
if (!user) return interaction.editReply("Couldn't find user.");
if (!user) return interaction.editReply('User not found.');
const e621Id = interaction.options.getInteger('e621-id', true);
+1 -1
View File
@@ -97,7 +97,7 @@ export default {
const user = await resolveUser(client, idToUse);
if (!user) return interaction.editReply('User not found');
if (!user) return interaction.editReply('User not found.');
if (subcommand == 'add') {
const reason = interaction.options.getString('reason', true);