diff --git a/src/commands/general/HelpCommand.ts b/src/commands/general/HelpCommand.ts index bacc080..be03165 100644 --- a/src/commands/general/HelpCommand.ts +++ b/src/commands/general/HelpCommand.ts @@ -6,6 +6,7 @@ import { Command } from "../../utils/decorators/Command.js"; @Command({ aliases: ["h", "command", "commands", "cmd", "cmds"], description: "Shows the command list or information for a specific command.", + devOnly: true, name: "help", slash: { options: [ diff --git a/src/commands/general/PingCommand.ts b/src/commands/general/PingCommand.ts index 7016b0f..aabf1b7 100644 --- a/src/commands/general/PingCommand.ts +++ b/src/commands/general/PingCommand.ts @@ -6,6 +6,7 @@ import { Command } from "../../utils/decorators/Command.js"; @Command({ aliases: ["pong", "pang", "pung", "peng", "pingpong"], description: "Shows current ping of the bot.", + devOnly: true, name: "ping", usage: "{prefix}ping" })