remove unneeded parts

This commit is contained in:
Amane Serenetia 2024-07-05 20:45:47 +07:00
parent 8df1e58d21
commit 62038d65de

View File

@ -1,6 +1,6 @@
module.exports = { module.exports = {
OWNER_IDS: ["334307216926703616", "1010905208391487548"], // Bot owner ID's OWNER_IDS: [""], // Bot owner ID's
SUPPORT_SERVER: "https://kiera-bot.serenetia.com", // Your bot support server SUPPORT_SERVER: "", // Your bot support server
PREFIX_COMMANDS: { PREFIX_COMMANDS: {
ENABLED: true, // Enable/Disable prefix commands ENABLED: true, // Enable/Disable prefix commands
DEFAULT_PREFIX: "kt?", // Default prefix for the bot DEFAULT_PREFIX: "kt?", // Default prefix for the bot
@ -9,7 +9,7 @@ module.exports = {
SLASH: true, // Should the interactions be enabled SLASH: true, // Should the interactions be enabled
CONTEXT: true, // Should contexts be enabled CONTEXT: true, // Should contexts be enabled
GLOBAL: true, // Should the interactions be registered globally GLOBAL: true, // Should the interactions be registered globally
TEST_GUILD_ID: "753500548656791573", // Guild ID where the interactions should be registered. [** Test you commands here first **] TEST_GUILD_ID: "", // Guild ID where the interactions should be registered. [** Test you commands here first **]
}, },
EMBED_COLORS: { EMBED_COLORS: {
BOT_EMBED: "#068ADD", BOT_EMBED: "#068ADD",
@ -37,9 +37,9 @@ module.exports = {
DASHBOARD: { DASHBOARD: {
enabled: true, // enable or disable dashboard enabled: true, // enable or disable dashboard
baseURL: "https://dash-kiera.serenetia.com", // base url baseURL: "http://localhost:8080", // base url
failureURL: "https://serenetia.com/void/error/", // failure redirect url failureURL: "http://localhost:8080", // failure redirect url
port: "3555", // port to run the bot on port: "8080", // port to run the bot on
}, },
ECONOMY: { ECONOMY: {
@ -69,21 +69,12 @@ module.exports = {
LAVALINK_NODES: [ LAVALINK_NODES: [
{ {
info: { info: {
host: "lavalinkv4.serenetia.com", host: "localhost",
port: 80, port: 2333,
auth: "lavalinkv4", auth: "youshallnotpass",
secure: false, secure: false,
}, },
identifier: "Indonesia V4 Not secure", identifier: "Lavalink",
},
{
info: {
host: "lavalinkv4.serenetia.com",
auth: "lavalinkv4",
port: 443,
secure: true,
},
identifier: "Indonesia V4 Secure"
}, },
], ],
}, },