Skip to content

Commit

Permalink
[Update] With this commit all commands for this bot should be ready f…
Browse files Browse the repository at this point in the history
…or use with prefixes as planned in #2. Some tests should be run on all commands. Closes #2
  • Loading branch information
naseif committed Oct 5, 2021
1 parent 4369cb7 commit 9a402b4
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 4 deletions.
1 change: 1 addition & 0 deletions commands/Admin/serverIcon.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ const { embedMessage } = require("../../modules/embedSimple");

module.exports = {
name: "servericon",
args: true,
aliases: ["si"],
description: "Changes the server icon!",
usage: "si || servericon <link must end with png or jpg>",
Expand Down
4 changes: 2 additions & 2 deletions commands/Admin/unban.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ const { embedMessage } = require("../../modules/embedSimple");
module.exports = {
name: "unban",
args: true,
description: "",
usage: "unban",
description: "Unbans a user from the server",
usage: "unban <userid>",
async run(message, args, client) {
const userID = args[0];

Expand Down
1 change: 1 addition & 0 deletions commands/Anime/highfive.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ const { requestAPI } = require("../../modules/requestAPI");
module.exports = {
name: "highfive",
aliases: ["hf"],
args: false,
description: "Sends a highfive gif",
usage: "hf || highfive",
async run(message, args, client) {
Expand Down
1 change: 1 addition & 0 deletions commands/Fun/8ball.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ const { embedMessage } = require("../../modules/embedSimple");
module.exports = {
name: "8ball",
args: true,
aliases: ["8"],
usage: "8ball <question>",
description: "Ask the magic ball a question!",
async run(message, args) {
Expand Down
2 changes: 1 addition & 1 deletion commands/Music/queue.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ module.exports = {
aliases: ["q"],
args: false,
description: "Shows all queued songs",
usage: "pause",
usage: "q || queue",
async run(message, args, client) {
const queue = client.player.getQueue(message.guild);

Expand Down
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
"discord.js": "^13.1.0",
"ffmpeg-static": "^4.4.0",
"moment": "^2.29.1",
"mongodb": "^4.1.2",
"mongoose": "^6.0.8",
"node-fetch": "^2.6.1",
"play-dl": "^1.0.3",
Expand Down

0 comments on commit 9a402b4

Please sign in to comment.