This commit is contained in:
Unknown 2024-04-04 10:54:51 -07:00
parent a5fe2a1cee
commit 22f0b9a816
2 changed files with 11 additions and 10 deletions

View file

@ -61,6 +61,7 @@
"moment": "^2.29.4",
"moment-duration-format": "^2.3.2",
"moment-timezone": "^0.5.39",
"mongodb": "^6.5.0",
"mongoose": "^6.8.0",
"ms": "^2.1.3",
"node-fetch": "^2.6.6",
@ -72,4 +73,4 @@
"weather-js": "^2.0.0",
"ytdl-core": "^4.11.2"
}
}
}

View file

@ -66,15 +66,15 @@ if (clientID && clientSecret) {
],
nodes: [
{
host: process.env.LAVALINK_HOST || "lava.link",
port: parseInt(process.env.LAVALINK_PORT) || 80,
password: process.env.LAVALINK_PASSWORD || "CorwinDev",
host: process.env.LAVALINK_HOST || "127.0.0.1",
port: parseInt(process.env.LAVALINK_PORT) || 2333,
password: process.env.LAVALINK_PASSWORD || "WatchingYou!",
secure: Boolean(process.env.LAVALINK_SECURE) || false
},
{
host: "lavalink.techpoint.world",
port: 80,
password: "techpoint"
host: "127.0.0.1",
port: 2333,
password: "WatchingYou!"
},
],
send(id, payload) {
@ -93,9 +93,9 @@ if (clientID && clientSecret) {
],
nodes: [
{
host: process.env.LAVALINK_HOST || "lava.link",
port: parseInt(process.env.LAVALINK_PORT) || 80,
password: process.env.LAVALINK_PASSWORD || "CorwinDev",
host: process.env.LAVALINK_HOST || "127.0.0.1",
port: parseInt(process.env.LAVALINK_PORT) || 2333,
password: process.env.LAVALINK_PASSWORD || "WatchingYou!",
secure: Boolean(process.env.LAVALINK_SECURE) || false
},
],