We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b24bd9c commit d42e861Copy full SHA for d42e861
1 file changed
src/commands/config/gateway.ts
@@ -1,4 +1,4 @@
1
-import { PermissionFlagsBits, TextInputStyle } from "discord.js";
+import { MessageFlags, PermissionFlagsBits, TextInputStyle } from "discord.js";
2
import { GuildSchema } from "../../schemas/guild.ts";
3
import { createConfigurationManifest } from "../../structures/index.ts";
4
import { ConfigurationMessage } from "../../structures/index.ts";
@@ -57,7 +57,7 @@ const ConfigCommand: Command = {
57
if (!interaction.inGuild()) {
58
interaction.reply({
59
content: "Run this command in a server to get server info",
60
- ephemeral: true,
+ flags: MessageFlags.Ephemeral,
61
});
62
return;
63
}
0 commit comments