We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 031990a commit f5ca145Copy full SHA for f5ca145
src/commands/command.ts
@@ -32,7 +32,7 @@ export class Command<CT extends CacheType = CacheType> {
32
*/
33
public async run(interaction: ChatInputCommandInteraction<CT>): Promise<void> {
34
await interaction.deferReply({
35
- flags: this.ephemeral ? (1 << 6) : undefined,
+ flags: this.ephemeral ? 1 << 6 : undefined,
36
});
37
38
await this.execute(interaction);
0 commit comments