This commit is contained in:
DjDeveloper 2021-03-12 15:05:43 +05:30 committed by GitHub
parent 5b015c6c08
commit c836ca8f42
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -146,11 +146,11 @@ export class Interaction extends SnowflakeBase {
option<T>(name: string): T {
const op = this.options.find((e) => e.name === name)
if (op === undefined || op.value === undefined) return undefined as any
if (op.type === SlashCommandOptionType.USER)
if (op.type === SlashCommandOptionType.USER) {
const u: InteractionUser = this.resolved.users[op.value] as any
if (this.resolved.members[op.value] !== undefined) u.member = this.resolved.members[op.value] as any
return u
else if (op.type === SlashCommandOptionType.ROLE)
} else if (op.type === SlashCommandOptionType.ROLE)
return this.resolved.roles[op.value] as any
else if (op.type === SlashCommandOptionType.CHANNEL)
return this.resolved.channels[op.value] as any