Updated whois command

This commit is contained in:
2024-02-20 13:05:10 +01:00
parent 6ee57aa7f6
commit b247f6a343

View File

@@ -28,7 +28,12 @@ export = {
const user = interaction.options.getUser("user")!
const verifiedUser = await verify.findOne({ userID: user.id })
if (!verifiedUser) {
interaction.editReply("You are not verified!")
interaction.editReply({
embeds: [{
description: userMention(user.id) + " is not verified.",
color: embedColor
}]
})
return
}