Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
saiteja-madha committed Nov 26, 2021
1 parent ba8184e commit 758e094
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ module.exports = {
DAILY_COINS: 100, // coins to be received by daily command
},
ECONOMY: {
CURRENCY: "",
CURRENCY: "",
DAILY_COINS: 100, // coins to be received by daily command
},
IMAGE: {
Expand Down
1 change: 1 addition & 0 deletions src/commands/information/channelinfo.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ module.exports = class ChannelInfo extends Command {
botPermissions: ["EMBED_LINKS"],
command: {
enabled: true,
usage: "[#channel|id]",
aliases: ["chinfo"],
},
slashCommand: {
Expand Down
1 change: 1 addition & 0 deletions src/commands/information/profile.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ module.exports = class Profile extends Command {
category: "INFORMATION",
command: {
enabled: true,
usage: "[@member|id]",
},
slashCommand: {
enabled: true,
Expand Down
1 change: 1 addition & 0 deletions src/commands/information/rank.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ module.exports = class Rank extends Command {
botPermissions: ["ATTACH_FILES"],
command: {
enabled: true,
usage: "[@member|id]",
},
slashCommand: {
enabled: true,
Expand Down
2 changes: 1 addition & 1 deletion src/commands/music/play.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ async function play({ member, guild, channel }, user, query) {
throw res.exception;
}
} catch (err) {
this.client.logger.error("Search Exception", err);
guild.client.logger.error("Search Exception", err);
return "There was an error while searching";
}

Expand Down

0 comments on commit 758e094

Please sign in to comment.