Skip to content

Commit

Permalink
chore(commands): prohibit general commands
Browse files Browse the repository at this point in the history
  • Loading branch information
mzrtamp committed Oct 6, 2024
1 parent 0efe130 commit 0723474
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/commands/general/HelpCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import { Command } from "../../utils/decorators/Command.js";
@Command<typeof HelpCommand>({
aliases: ["h", "command", "commands", "cmd", "cmds"],
description: "Shows the command list or information for a specific command.",
devOnly: true,
name: "help",
slash: {
options: [
Expand Down
1 change: 1 addition & 0 deletions src/commands/general/PingCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import { Command } from "../../utils/decorators/Command.js";
@Command<typeof PingCommand>({
aliases: ["pong", "pang", "pung", "peng", "pingpong"],
description: "Shows current ping of the bot.",
devOnly: true,
name: "ping",
usage: "{prefix}ping"
})
Expand Down

0 comments on commit 0723474

Please sign in to comment.