Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cfa-manager",
"version": "1.6.4",
"version": "1.6.5",
"description": "Discord bot that manages the Chaos Forces Alliance.",
"main": "src/index.js",
"type": "module",
Expand All @@ -18,7 +18,7 @@
"author": "Asynchronite",
"license": "AGPLv3",
"dependencies": {
"discord.js": "^14.19.1",
"discord.js": "^14.19.3",
"dotenv": "^16.5.0",
"knex": "^3.1.0",
"moment": "^2.30.1",
Expand Down
42 changes: 21 additions & 21 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/commands/command/blacklist.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export const data = new SlashCommandBuilder()
.setDescription('Manage CFA application blacklists.')
.addSubcommand(subCommand => subCommand
.setName('issue')
.setDescription('Blacklist a person from applying.')
.setDescription('[COM+] Blacklist a person from applying.')
.addUserOption(option => option
.setName('user')
.setDescription('The user to be blacklisted.')
Expand All @@ -24,7 +24,7 @@ export const data = new SlashCommandBuilder()
)
.addSubcommand(subCommand => subCommand
.setName('remove')
.setDescription('Unblacklist a person from applying.')
.setDescription('[COM+] Unblacklist a person from applying.')
.addUserOption(option => option
.setName('user')
.setDescription('The user to be unblacklisted.')
Expand Down
2 changes: 1 addition & 1 deletion src/commands/command/dm.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { SlashCommandBuilder, EmbedBuilder, Colors } from 'discord.js';

export const data = new SlashCommandBuilder()
.setName('dm')
.setDescription('Send a direct message to a user.')
.setDescription('[COM+] Send a direct message to a user.')
.addUserOption(option => option
.setName('member')
.setDescription('The server member to DM.')
Expand Down
Loading
Loading