Skip to content

Commit

Permalink
Update Interaction.js
Browse files Browse the repository at this point in the history
  • Loading branch information
JustCat80 committed May 30, 2021
1 parent 17faf1d commit 48e0182
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/structures/Interaction.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ class Interaction extends Base {
content: content.content,
embeds: content.embeds || [],
allowed_mentions: content.allowed_mentions || null,
tts: options.tts,
tts: content.tts,
flags: content.flags || 0,
}, content.file).then((response) => new Message(response, this));
}
Expand Down Expand Up @@ -154,7 +154,7 @@ class Interaction extends Base {
content: content.content,
embeds: content.embeds || [],
allowed_mentions: content.allowed_mentions || null,
tts: options.tts,
tts: content.tts,
flags: content.flags || 0,
}
})
Expand Down

0 comments on commit 48e0182

Please sign in to comment.