Attempt a few extra ways to resolve users

This commit is contained in:
Tarrgon
2025-09-08 06:58:16 -04:00
parent 7c050b62db
commit 6adc431823
3 changed files with 19 additions and 5 deletions
+1 -1
View File
@@ -59,7 +59,7 @@ export default {
const idToUse = matches ? matches.groups!.id : discordUserInput;
const user = await resolveUser(client, idToUse);
const user = await resolveUser(client, idToUse, interaction.guild);
if (!user) return interaction.editReply('User not found.');
+1 -1
View File
@@ -95,7 +95,7 @@ export default {
await deferInteraction(interaction);
const user = await resolveUser(client, idToUse);
const user = await resolveUser(client, idToUse, interaction.guild);
if (!user) return interaction.editReply('User not found.');