Skip to content

Commit f5ca145

Browse files
committed
fix: format
1 parent 031990a commit f5ca145

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/commands/command.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export class Command<CT extends CacheType = CacheType> {
3232
*/
3333
public async run(interaction: ChatInputCommandInteraction<CT>): Promise<void> {
3434
await interaction.deferReply({
35-
flags: this.ephemeral ? (1 << 6) : undefined,
35+
flags: this.ephemeral ? 1 << 6 : undefined,
3636
});
3737

3838
await this.execute(interaction);

0 commit comments

Comments
 (0)