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
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"homepage": "https://github.com/idMJA/Soundy",
"repository": {
"type": "git",
"url": "https://github.com/idMJA/Soundy.git"
"url": "https://github.com/idMJA/Soundy"
},
"bugs": {
"url": "https://github.com/idMJA/Soundy/issues"
Expand Down
27 changes: 10 additions & 17 deletions src/config/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { emoji } from "./emoji";
const { TOKEN, DATABASE_URL, DATABASE_PASSWORD } = process.env;

export const Configuration: SoundyConfiguration = {
defaultPrefix: "t!", // Default prefix for commands
defaultPrefix: "!", // Default prefix for commands
defaultSearchPlatform: "spotify", // Default search platform for music commands
defaultVolume: 100, // Default volume for music playback
defaultLocale: "en-US", // Default locale for the bot
Expand All @@ -17,13 +17,12 @@ export const Configuration: SoundyConfiguration = {
voteLink: "https://top.gg/bot/1168385371294420992/vote",
},
topgg: {
enabled: true,
enabled: false,
webhookAuth: "xxxx", // Replace with actual webhook auth token
token:
"xxxx", // Replace with actual Top.gg token
token: "xxxx", // Replace with actual Top.gg token
},
premium: {
enabled: true, // Enable or disable premium features
enabled: false, // Enable or disable premium features
},
cache: {
filename: "commands.json", // Name of the cache file
Expand All @@ -43,18 +42,12 @@ export const Configuration: SoundyConfiguration = {
warn: 0xffff00, // Color for warning responses
},
webhooks: {
nodeLog:
"xxx", // Node logs
guildLog:
"xxx", // Guild logs
commandLog:
"xxx", // Command logs
voteLog:
"xxx", // Vote logs
errorLog:
"xxx", // Error logs
report:
"xxx", // Bug or suggestion reports
nodeLog: "xxx", // Node logs
guildLog: "xxx", // Guild logs
commandLog: "xxx", // Command logs
voteLog: "xxx", // Vote logs
errorLog: "xxx", // Error logs
report: "xxx", // Bug or suggestion reports
},

emoji,
Expand Down
2 changes: 1 addition & 1 deletion src/locales/en-US.ts
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ export default {
}: { invite: string; support: string; vote: string }) =>
`**[Invite Me](${invite}) • [Support Server](${support}) • [Vote](${vote})**`,
},
footer: ({ bot }: { bot: string }) => `**Thanks for choosing ${bot}!**`,
footer: ({ bot }: { bot: string }) => `Thanks for choosing ${bot}!`,
select: "Select a category",
categoryTitle: ({ category }: { category: string }) =>
`${category} Commands`,
Expand Down
Loading